如何将代码生成的文件设为只读

Attributes Property
Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute.

object.Attributes [= newattributes]

Arguments
object

Required. Always the name of a File or Folder object.

newattributes

Optional. If provided, newattributes is the new value for the attributes of the specified object.

Settings
The newattributes argument can have any of the following values or any logical combination of the following values:

Constant Value Description
Normal 0 Normal file. No attributes are set.
ReadOnly 1 Read-only file. Attribute is read/write.
Hidden 2 Hidden file. Attribute is read/write.
System 4 System file. Attribute is read/write.
Directory 16 Folder or directory. Attribute is read-only.
Archive 32 File has changed since last backup. Attribute is read/write.
Alias 1024 Link or shortcut. Attribute is read-only.
Compressed 2048 Compressed file. Attribute is read-only.

Remarks
Attempts to change any of the read-only attributes (Alias, Compressed, or Directory) are ignored.

When setting attributes, it is generally a good idea to first read the current attributes, then change the individual attributes as desired, and finally write the attributes back.

The following code illustrates the use of the Attributes property with a file:

Function ToggleArchiveBit(filespec)
   Dim fso, f
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.GetFile(filespec)
   If f.attributes and 32 Then
      f.attributes = f.attributes - 32
      ToggleArchiveBit = "Archive bit is cleared."
   Else
      f.attributes = f.attributes + 32
      ToggleArchiveBit = "Archive bit is set."
   End If
End Function

时间: 2024-11-03 21:01:28

如何将代码生成的文件设为只读的相关文章

ASP中如何将代码生成的文件设为只读

ASP中如何将代码生成的文件设为只读 (01-2-25 137) [hooke] 于 2001-2-21 17:12:14 加贴在 Joy ASP ↑: Attributes Property Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute. object.Attributes [= newattributes] Arguments ob

在ASP中如何将代码生成的文件设为只读

Attributes PropertySets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute. object.Attributes [= newattributes] Argumentsobject Required. Always the name of a File or Folder object. newattributes Option

Win8系统Word文件默认为只读文件怎么处理?

  Win8系统Word文件默认为只读文件怎么处理?          原因分析 1.权限问题,需要注册表文件增加超级管理员权限的,试过无效. 2.因为文件格式太旧了,是2003格式的,Win8不支持,要把所有文件保存为最新的格式. 解决方法 1.首先打开运行对话框,可以使用Win+ R,输入netplwiz,回车.如图: 2.弹出用户账户设置界面: 3.选中你的用户名,点击属性按钮.在弹出窗口,选择"组成员"页面,如下图: 4.选中其他,并且在下拉列表里选择Administrator

Jquery显示和隐藏元素或设为只读(含Ligerui的控件禁用,实例说明介绍)

本篇文章是对Jquery中显示和隐藏元素或设为只读以及Ligerui的控件禁用实现代码进行了分析介绍,需要的朋友可以参考下   一.隐藏和显示元素 复制代码 代码如下: $('#button_save_12').css('display', 'none');  // 隐藏按钮 $('#button_save_12').css('display', 'display');  // 显示按钮 // 或者采取 复制代码 代码如下: $('#button_save_12').hide(); $('#bu

Win8如何更改文件夹的只读或系统属性

  Win8更改文件夹的只读或系统属性的方法如下: 正常情况下通过右键属性只能更改文件的只读属性,系统属性则连相应选项都没有. 操作步骤: 1.右键点击该文件夹,单击"属性"设置出现如下界面: 将"只读(仅应用于文件夹中的文件(R))"复选框选中,此功能仅仅只对此文件夹下的文件加上只读属性,并非此文件夹为只读属性. 若要设置的该文件夹包含子文件夹,则会有如下提示,选中如图红色框所示,然后单击"确定",如此操作后按字面意思则会把该文件夹及其子文件夹

Windows8中如何更改文件夹的只读或系统属性

  适用范围: Windows 8 消费者预览版 知识点分析: 正常情况下通过右键属性只能更改文件的只读属性,系统属性则连相应选项都没有(如图): 操作步骤: 1.右键点击该文件夹,单击"属性"设置出现如下界面: 将"只读(仅应用于文件夹中的文件(R))"复选框选中,此功能仅仅只对此文件夹下的文件加上只读属性,并非此文件夹为只读属性. 若要设置的该文件夹包含子文件夹,则会有如下提示: 选中如图红色框所示,然后单击"确定",如此操作后按字面意思则会

命令行更改文件夹的只读或系统属性

注意这个是在Windows系统下的改变! 若要查看或删除文件夹的"只读"或"系统"属性,请在命令提示符下使用attrib命令: 1.单击「开始」按钮,在搜索框中键入cmd,然后按Enter. 2.若要查看attrib命令的语法,请在命令提示符下键入attrib //?. 警告:如果从文件夹中删除"只读"或"系统"属性,该文件夹可能会以普通文件夹的形式出现,并可能会丢 失某些自定义特征.例如,Windows自定义"字体

能否根据现有的代码生成thrift文件

问题描述 能否根据现有的代码生成thrift文件 网站用的语言是php,现在想把网站的代码拆分一下,将一些sevice类的代码独立部署,通过thrift进行service的调用,但是原来的sevice太多,数据结构又不一样,如果写thrift文件,每个类和方法都要定义对应的struct和service,这样工作量太大了,想了解有没有一些简便的办法呢 解决方案 通过thrift 来生成对应的调用代码.不知道有没有其他工具.

导航-求java代码生成svg文件的思路

问题描述 求java代码生成svg文件的思路 我这个svg图片是路标导航图,这种话路标导航可能有上万张,所以只能用代码去生成这个svg图片,可是有没有正确的思路. 这是其中一张svg文件的xml <?xml version="1.0" encoding="GBK"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Grap