Najnowsze tutoriale tworzenie stron internetowych
 

ASP Attributes Property


<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
1 = tylko do odczytu pliku
2 = plik ukryty
4 = file system
16 = Folder lub katalog
32 = Plik zmienił się od ostatniej kopii zapasowej
1024 = Link lub skrót
2048 = Plik skompresowany

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