أحدث البرامج التعليمية وتطوير الشبكة
 

ASP Attributes Property


<كاملة كائن الملف المرجعي

يتم استخدام خاصية سمات لتعيين أو إعادة سمة أو سمات الملف المحدد أو المجلد.

بناء الجملة

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

معامل وصف
newattributes اختياري. يحدد قيمة السمة لملف أو مجلد.

يمكن أن تتخذ أي من القيم التالية أو مجموعة من القيم التالية:

0 = ملف عادي
ملف 1 = للقراءة فقط
2 = ملف مخفي
4 = ملف النظام
16 = مجلد أو دليل
لقد تغير 32 = الملف منذ النسخ الاحتياطي الأخير
1024 = رابط أو الاختصار
2048 = ملف مضغوط

مثال للكائن الملف

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

<كاملة كائن الملف المرجعي