<كاملة كائن الملف المرجعي
يتم استخدام خاصية سمات لتعيين أو إعادة سمة أو سمات الملف المحدد أو المجلد.
بناء الجملة
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
<كاملة كائن الملف المرجعي