<อ้างอิงวัตถุโฟลเดอร์ที่สมบูรณ์
คุณสมบัติแอตทริบิวต์ที่ใช้ในการตั้งหรือกลับแอตทริบิวต์หรือแอตทริบิวต์ของแฟ้มที่ระบุหรือโฟลเดอร์
วากยสัมพันธ์
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
พารามิเตอร์ | ลักษณะ |
---|---|
newattributes | ไม่จำเป็น. ระบุ ค่าแอตทริบิวต์สำหรับไฟล์หรือโฟลเดอร์ สามารถใช้ใด ๆ ของค่าต่อไปนี้หรือการรวมกันของค่าต่อไปนี้: 0 = ไฟล์ปกติ |
ตัวอย่างสำหรับวัตถุแฟ้ม
<%
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
ตัวอย่างสำหรับวัตถุโฟลเดอร์
<%
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
<อ้างอิงวัตถุโฟลเดอร์ที่สมบูรณ์