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


तपाईँ लोजिकल OR कथन सँग संयोजित सम्बन्धित मानहरूद्वारा बहु विशेषताहरू सेट गर्न सक्नुहुन्छ ।

त्रुटि सङ्केतहरू

5 अवैध कार्य-विधि कल

53 फाइल फेला परेन

70 अनुमति अस्विकार गरियो

Example:


Sub ExampleSetGetAttr
 On Error GoTo ErrorHandler ' त्रुटि ह्यान्डलरका लागि लक्ष्य परिभाषित गर्नुहोस्
 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

कृपया हामीलाई समर्थन गर्नुहोस्!