En son web geliştirme öğreticiler
 

ASP Attributes Property


<Komple Klasör Nesne Referans

Nitelikler özelliği ayarlamak veya belirli bir dosya veya klasörün özelliği veya özelliklerini dönmek için kullanılır.

Sözdizimi

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

Parametre Açıklama
newattributes İsteğe bağlı. belirtir dosya veya klasör için değer atamak.

Aşağıdaki değerler veya aşağıdaki değerlerden bir kombinasyonu herhangi alabilir:

0 = Normal dosya
1 = Salt okunur dosya
2 = Gizli dosya
4 = Sistem dosyası
16 = klasör ya da dizin
32 = Dosya son yedekleme yana değişti
1024 = Bağlantı veya kısayol
2048 = Sıkıştırılmış dosya

File nesnesinin Örnek

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

Klasör nesnesi için Örnek

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

<Komple Klasör Nesne Referans