<Полная Папка Object Reference
Свойство Attributes используется для установки или вернуть атрибут или атрибуты заданного файла или папки.
Синтаксис
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
параметр | Описание |
---|---|
newattributes | Необязательный. Определяет значение атрибута для файла или папки. Может принимать одно из следующих значений или комбинации следующих значений: 0 = Нормальный файл |
Пример для объекта 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
Пример для объекта Папки
<%
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
<Полная Папка Object Reference