<Pełna Object Reference File
Nieruchomość Atrybuty służy do ustawiania lub zwrotu atrybut lub atrybuty określonego pliku lub folderu.
Składnia
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
Parametr | Opis |
---|---|
newattributes | Opcjonalny. Określa wartości atrybutów dla pliku lub folderu. Może podjąć jedną z następujących wartości lub kombinacji następujących wartości: 0 = plik Normal |
Przykład obiektu pliku
<%
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
Przykładem przedmiotu 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
<Pełna Object Reference File