⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vb_att3b.dat

📁 指令字典2005里面可以方便的查找一些函数
💻 DAT
字号:
语法
----
object.Attributes [= newattributes]

Attributes 属性有下列几个部分:

部分            描述 
object          必需的。总是某个 File 或者 Folder 对象的名字。 
newattributes   可选的。如果提供的话,newattributes 就是所指定 object 的新属性值。 


设置

newattributes 参数可以是具有下列值中的任意一个或任意的逻辑组合:

常数       值    描述 
Normal     0     一般文件。未设置属性。 
ReadOnly   1     只读文件。属性为读/写。 
Hidden     2     隐藏文件。属性为读/写。 
System     4     系统文件。属性为读/写。 
Volume     8     磁盘驱动器卷标。属性为只读。 
Directory  16    文件夹或目录。属性为只读。 
Archive    32    自上次备份后已经改变的文件。属性为读/写。 
Alias      64    链接或快捷方式。属性为只读。 
Compressed 128   压缩文件。属性为只读。 


说明
----
下面的代码用一个文件举例说明了 Attributes 属性的用法:

Sub SetClearArchiveBit(filespec)
    Dim fs, f, r
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set f = fs.GetFile(fs.GetFileName(filespec))
    If f.attributes and 32 Then
        r = MsgBox("The Archive bit is set, do you want to clear it?", vbYesNo, "Set/Clear Archive Bit")
        If r = vbYes Then 
            f.attributes = f.attributes - 32
            MsgBox "Archive bit is cleared."
        Else
            MsgBox "Archive bit remains set."
        End If
    Else
        r = MsgBox("The Archive bit is not set. Do you want to set it?", vbYesNo, "Set/Clear Archive Bit")
        If r = vbYes Then 
            f.attributes = f.attributes + 32
            MsgBox "Archive bit is set."
        Else
            MsgBox "Archive bit remains clear."
        End If
    End If
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -