LibreOffice 24.8 Help
Open བརྗོད་པས་ཁ་ཕྱེ་བའི་ཡིག་ཆའི་འཚམས་འདྲིའི་མ་ཚུལ་ལམ་ཡིག་ཆའི་འཚམས་འདྲིའི་ཨང་སྒྲིག་ཕྱིར་ལོག་བྱེད། ཡིག་ཆའི་མཚམས་འདྲིའི་ཨང་སྒྲིག་ནི་བཀོལ་སྤྱོད་མ་ལག (OSH = བཀོལ་སྤྱོད་མ་ལག་གི་ཚིག་སྣེ་གིས་ཐག་གཅོད་)
If you use a 32-Bit operating system, you cannot use the FileAttr function to determine the file access number.
དཔྱད་གཟིགས་མཛོད་ Open
FileAttr (Channel As Integer, Attributes As Integer)
ཧྲིལ་གྲངས་
Channel: The number of the file that was opened with the Open statement.
Attributes: Integer expression that indicates the type of file information that you want to return. The following values are possible:
1: FileAttr indicates the access mode of the file.
2: FileAttr returns the file access number of the operating system.
གལ་སྲིད་ཁྱེད་ཀྱིས་ཞུགས་གྲངས་གཏོགས་གཤིས་ 1ལ་གཏན་འཁེལ་བྱས་ན་ གཤམ་གྱི་ཕྱིར་ལོག་ཐང་བེད་སྤྱོད་བྱ་
1 - INPUT (ཡིག་ཆ་ཁ་ཕྱེ་ནས་ནང་འཇུག་བྱེད་པ་)
1 - OUTPUT (ཡིག་ཆ་ཁ་ཕྱེ་ནས་ནང་འཇུག་བྱེད་)
4 - RANDOM (ཡིག་ཆ་ཁ་ཕྱེ་ནས་སྐབས་བསྟུན་འཚམས་འདྲི་བྱེད་)
8 - APPEND (ཡིག་ཆ་ཁ་ཕྱེ་ནས་འདེད་སྣོན་བྱེད་པ་)
32 - BINARY (གཉིས་གོང་འདྲིལ་མ་ཚུལ་གྱི་ཡིག་ཆ་ཁ་འབྱེད།)
Sub ExampleFileAttr
Dim iNumber As Integer
Dim sLine As String
Dim aFile As String
aFile = "C:\Users\ThisUser\data.txt"
iNumber = Freefile
Open aFile For Output As #iNumber
Print #iNumber, "This is a line of text"
MsgBox FileAttr(#iNumber, 1), 0, "Access mode"
MsgBox FileAttr(#iNumber, 2), 0, "File attribute"
Close #iNumber
End Sub