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