tutorial pengembangan web terbaru
 

ASP Attributes Property


<Complete Reference Berkas Object

Properti Atribut digunakan untuk mengatur atau mengembalikan atribut atau atribut file atau folder tertentu.

Sintaksis

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

Parameter Deskripsi
newattributes Pilihan. menentukan nilai atribut untuk file atau folder.

Dapat mengambil salah satu nilai berikut atau kombinasi dari nilai berikut:

0 = File normal
1 = Baca-satunya file
2 = Hidden File
4 = File Sistem
16 = Folder atau direktori
32 = Berkas telah berubah sejak terakhir cadangan
1024 = Link atau shortcut
2048 = File Compressed

Contoh untuk objek File

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

Misalnya untuk objek 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

<Complete Reference Berkas Object