如何通过cmd或VBA删除文件的写保护?

时间:2012-08-28 06:39:30

标签: vba cmd

我正在编写一个用于单词和excel的宏。输出是应该保存的生成文件。 由于这些文件已经存在并且受到写保护,因此我不得不删除保护。我在excel中找到了一个unprotect函数,但它并没有真正起作用。 我也没有找到任何通过cmd o0

取消保护的命令

我考虑过在保存新文件之前删除这些文件。 但我想找到解除保护的解决方案。

2 个答案:

答案 0 :(得分:5)

在cmd中尝试attrib命令来更改文件属性 attrib *.xls -r将帮助您删除readonly属性。

答案 1 :(得分:5)

这是一种使用FileSystemObject从VBA中删除只读属性的方法:

Sub RemoveReadOnly(filePath As String)
    Dim FSO As FileSystemObject
    Dim f As Scripting.File
    Set FSO = New FileSystemObject
    Set f = FSO.GetFile(filePath)

    If fil.Attributes And ReadOnly Then 'It's read-only. Remove that attribute.
        fil.Attributes = fil.Attributes - ReadOnly
    End If
End Sub

用法:

RemoveReadOnly "C:\mydir\myReadOnlyFile.dat"

更多信息:http://msdn.microsoft.com/en-us/library/5tx15443%28v=vs.85%29.aspx

注意:以上内容需要按如下方式设置参考:工具>参考文献...>设置Microsoft Scripting Runtime旁边的复选标记。

如果您不想设置引用,请改为使用后期绑定:

Sub RemoveReadOnly(filePath As String)
    Dim FSO As Object
    Dim fil As Object    
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set fil = FSO.GetFile(filePath)

    If fil.Attributes And 1 Then '1 = ReadOnly
        fil.Attributes = fil.Attributes - 1
    End If
End Sub