<Complete oggetto file di riferimento
La proprietà Attributes viene utilizzata per impostare o restituire l'attributo o gli attributi di un file o una cartella specificata.
Sintassi
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
Parametro | Descrizione |
---|---|
newattributes | Opzionale. Specifica il attribuire valore per il file o la cartella. Può prendere uno qualsiasi dei seguenti valori o una combinazione dei seguenti valori: 0 = file normale |
Esempio per l'oggetto File
<%
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
Esempio per l'oggetto 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 oggetto file di riferimento