<Complete Référence objet dossier
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 |
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 Référence objet dossier