Attributes 属性
2008-01-05 08:12:15 来源:WEB开发网核心提示: 设置或返回文件或文件夹的属性, 根据不同属性为读/写或只读,Attributes 属性,object.Attributes [= newattributes] 参数object必选项, 应为 File 或 Folder 对象的名称, 属性为只读,ComPRessed128压缩文件,newattributes可选项,
设置或返回文件或文件夹的属性。 根据不同属性为读/写或只读。
object.Attributes [= newattributes]
参数
object
必选项。 应为 File 或 Folder 对象的名称。
newattributes
可选项。 假如提供了这个部分,那么 newattributes 将成为指定的 object 的新属性值。
设置
newattributes 参数可以是下列各值或者这些值的任意逻辑组合:
说明
下面的代码通过一个文件说明了 Attributes 属性的用法:
function ToggleArchiveBit(filespec) {
var fso, f, r, s;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFile(filespec)
if (f.attributes && 32)
{
f.attributes = f.attributes - 32;
s = "Archive bit is cleared.";
}
else
{
f.attributes = f.attributes + 32;
s = "Archive bit is set.";
}
return(s);
}
请参阅
DateCreated 属性 DateLastaccessed 属性 DateLastModified 属性 Drive 属性 Files 属性 IsRootFolder 属性 Name 属性 ParentFolder 属性 Path 属性 ShortName 属性 ShortPath 属性 Size 属性 SubFolders 属性 Type 属性
应用于: File 对象 Folder 对象
Tags:Attributes 属性
编辑录入:爽爽 [复制链接] [打 印]- ››Attributes 属性
- ››属性选择符Attribute Selectors
- ››属性列表的开发
- ››属性的提取
- ››属性的编辑
- ››属性简介、属性的定义与使用
更多精彩
赞助商链接