Derniers tutoriels de développement web
 

ASP Attributes Property


<Complete Object Reference File

La propriété Attributes est utilisé pour définir ou renvoyer l'attribut ou les attributs d'un fichier ou le dossier spécifié.

Syntaxe

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

Paramètre La description
newattributes Optionnel. Indique la attribuer une valeur pour le fichier ou le dossier.

Peut prendre l'une des valeurs suivantes ou une combinaison des valeurs suivantes:

0 = fichier normal
1 = fichier en lecture seule
2 = Fichier caché
4 = fichier System
16 = dossier ou répertoire
32 = Le fichier a changé depuis la dernière sauvegarde
1024 = Link ou raccourci
2048 = fichier compressé

Exemple pour l'objet fichier

<%
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

Exemple pour l'objet de dossier

<%
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 Object Reference File