LibreOffice 25.2 Help
ཡིག་སྣོད་ཀྱི་མིང་དེ་ སྣོད་ཐོ་ ཡང་ན་ཡིག་སྣོད་ཚུ་ཆ་མཉམ་དང་དྲན་འཕྲུལ་གུ་གི་སྣོད་ཐོ་ཚུ་ཡང་ན་སྣོད་ཐོ་གསལ་བཀོད་འབད་ཡོད་པའི་འཚོལ་ཞིབ་འགྲུལ་ལམ་མཐུན་སྒྲིག་འབད་མི་དེ་སླར་ལོགཔ་ཨིན།
Dir [(PathName As String [, Attributes As Integer])]
ཡིག་རྒྱུན།
PathName: Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in URL notation.
Attributes:Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:
༠ : སྤྱིར་བཏང་ཡིག་སྣོད་ཚུ།
16 : སྣོད་ཐོ་རྐྱངམ་ཅིག་གི་མིང་སླར་ལོགཔ་ཨིན།
འ་ནི་ཁྱད་ཆོས་དེ་ཡིག་སྣོད་ཡང་ན་སྣོད་ཐོ་ཡོདཔ་ཚུ་ཞིབ་དཔྱད་འབད་ནི་ལུ་ལག་ལེན་འཐབ་ ཡང་ན་ཡིག་སྣོད་ཚུ་ཆ་མཉམ་དང་སྣོད་ཐོ་གསལ་བཀོད་ནང་སྣོད་འཛིན་ཚུ་གཏན་འབེབས་བཟོ་ནི་ལག་ལེན་འཐབ།
ཡིག་སྣོད་གཅིག་ཡོད་པ་ཨིན་ཞིབ་དཔྱད་འབད་ནི་ལུ་ ཡོངས་སྒྲུབ་འགྲུལ་ལམ་དང་ཡིག་སྣོད་ཀྱི་མིང་དེ་བཙུགས། ཡིག་སྣོད་ཡང་ན་སྣོད་ཐོ་མིང་དེ་མེད་པ་ཅིན་ ཌི་ཨའི་ཨར་ལས་འགན་དེ་ ("")ཡིག་རྒྱུན་རིང་ཚད་ཀླད་ཀོར་སླར་ལོགཔ་ཨིན།
To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, "D:\Files\*.ods". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments.
To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition).
Sub ExampleDir
རིམ་གྱིས་ཡིག་སྣོད་ཚུ་དང་སྣོད་ཐོ་ཚུ་ཆ་མཉམ་བཀྲམ་བཏོན་འབདཝ་ཨིན།
Dim sPath As String
Dim sDir As String, sValue As String
ཨེསི་ཌར="Directories:"
sPath = CurDir
sValue = Dir$(sPath + getPathSeparator + "*",16)
Do
If sValue <> "." And sValue <> ".." Then
If (GetAttr( sPath + getPathSeparator + sValue) And 16) >0 Then
ཨར་ཨི་ཨེམ་་ལེན་སྣོད་ཐོ་འདི་ཚུ།
sDir = sDir & chr(13) & sValue
End If
End If
sValue = Dir$
Loop Until sValue = ""
MsgBox sDir,0,sPath
End Sub