Gli ultimi tutorial di sviluppo web
 

ASP Attributes Property


<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
1 = file di sola lettura
2 = File nascosti
4 = file di sistema
16 = cartella o directory
32 = Il file è stato modificato dopo l'ultimo backup
1024 = Link o collegamento
2048 = File compresso

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