የ ፋይል መለያ መረጃ ማሰናጃ አረፍተ ነገር

ለ ተወሰነው ፋይል የ መለያ መረጃ ማሰናጃ

አገባብ:


SetAttr PathName As String, Attributes As Integer

ደንቦች:

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:

የ ተሰየመ መደበኛ

ዋጋ

መግለጫ

ATTR_NORMAL

0

መደበኛ ፋይሎች

ATTR_READONLY

1

ለንባብ-ብቻ ፋይሎች

ATTR_HIDDEN

2

የ ተደበቀ ፋይል


እርስዎ ማሰናዳት ይችላሉ በርካታ መለያዎች በ መቀላቀል ተመሳሳይ ወይንም እያንዳንዱ ዋጋዎች በ logic OR አረፍተ ነገር

የ ስህተት ኮዶች:

5 ዋጋ የሌለው የ አሰራር ጥሪ

53 ፋይሉ አልተገኘም

70 ፍቃድ ተከልክሏል

ለምሳሌ:


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!