<สมบูรณ์โฟลเดอร์วัตถุอ้างอิง
คุณสมบัติ IsRootFolder ส่งกลับจริงถ้าโฟลเดอร์ที่ระบุเป็นโฟลเดอร์รากและเท็จหากไม่ได้
วากยสัมพันธ์
FolderObject.IsRootFolder
ตัวอย่าง
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp\test")
if fo.IsRootFolder=true then
Response.Write("The folder is the root folder!")
else
Response.Write("The folder is not the root folder!")
end if
set fo=nothing
set fs=nothing
%>
Output:
The folder is not the root folder!
<อ้างอิงวัตถุโฟลเดอร์ที่สมบูรณ์