<Complete Reference dosar obiect
Proprietatea Atributele este folosit pentru a seta sau returna atributul sau atributele unui fișier sau folder specificat.
Sintaxă
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
Parametru | Descriere |
---|---|
newattributes | Opțional. specifică valoarea atributului pentru fișierul sau dosarul. Poate lua oricare dintre următoarele valori sau o combinație dintre următoarele valori: 0 = fișier normal |
Exemplu pentru obiectul fișier
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
Response.Write("The attributes of the file are: ")
Response.Write(f.Attributes)
set f=nothing
set fs=nothing
%>
Output:
The attributes of the file are: 32
Exemplu pentru obiect Folder
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
Response.Write("The attributes of the folder are: ")
Response.Write(fo.Attributes)
set fo=nothing
set fs=nothing
%>
Output:
The attributes of the folder are: 16
<Complete Reference dosar obiect