SetAttr Statement

ཡིག་སྣོད་གསལ་བཀོད་འབད་ཡོད་མི་དོན་ལུ་ཁྱད་ཆོས་བརྡ་དོན་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན།

Syntax:


SetAttr PathName As String, Attributes As Integer

Parameters:

FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, SetAttr searches for the file in the current directory. You can also use URL notation.

Attributes: Bit pattern defining the attributes that you want to set or to clear:

Named constant

Value

Definition

ATTR_NORMAL

0

Normal files.

ATTR_READONLY

1

Read-only files.

ATTR_HIDDEN

2

Hidden file


ཁྱོད་ཀྱིས་སྣ་མང་ཁྱད་ཆོས་ཚུ་འབྲེལ་བའི་གནས་གོང་གཅིག་ཁར་གཏན་ཚིག་ཅན་་ཡང་ན་གསལ་བཤད་འདི་མཉམ་མཐུད་ཀྱིས་སྦེ་གཞི་སྒྲིག་འབད།

Error codes:

༥ ནུས་མེད་བྱ་སྒོའི་ལམ་ལུགས་བོད་བརྡ་

༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ ༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ ༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ ༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ ༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་ ༥༣་ ཡིག་སྣོད་འཚོལ་མ་ཐོབ་

༧༠ གནང་བ་ཉན་མ་བཏུབ་

Example:


Sub ExampleSetGetAttr
 འཛོལ་བ་གུ་འཛོལ་བ་ལེགས་སྐྱོང་པ་ལུ་འགྱོ་ འཛོལ་བ་ལེགས་སྐྱོང་པ་དོན་ལུ་རིམ་ངེས་འཛིན་དམིགས་གཏད་འབད།
 If Dir("C:\test",16)="" Then MkDir "C:\test"
 If Dir("C:\test\autoexec.sav")="" Then FileCopy "c:\autoexec.bat", "c:\test\autoexec.sav"
 SetAttr "c:\test\autoexec.sav" ,0
 FileCopy "c:\autoexec.bat", "c:\test\autoexec.sav"
 SetAttr "c:\test\autoexec.sav" , ATTR_READONLY
 Print GetAttr( "c:\test\autoexec.sav" )
 End
ErrorHandler:
 Print Error
 End
End Sub

Please support us!