1

我正在开发一个示例应用程序,我必须在其中打开一个 excel 文件并检查该文件是否受写保护。代码是

using System.Windows.Forms;
using Microsoft.Office.Core;

private void button1_Click(object sender, EventArgs e)
{
    string fileNameAndPath = @"D:\Sample\Sample1.xls"; 
    // the above excel file is a write protected.

    Microsoft.Office.Interop.Excel.Application a = 
              new  Microsoft.Office.Interop.Excel.Application();
    if (System.IO.File.Exists(fileNameAndPath))
    {
        Microsoft.Office.Interop.Excel.ApplicationClass app = 
              new Microsoft.Office.Interop.Excel.ApplicationClass();

        // create the workbook object by opening  the excel file.
        app.Workbooks.Open(fileNameAndPath,0,false,5,"","",true,
                           Microsoft.Office.Interop.Excel.XlPlatform.xlWindows,
                           "\t",false, true, 0,false,true,0);

        Microsoft.Office.Interop.Excel._Workbook w = 
              app.Workbooks.Application.ActiveWorkbook;

        if (w.ReadOnly)
              MessageBox.Show("HI");
        // the above condition is true.
    }

}

我想知道文件是否被写保护。

4

6 回答 6

3

您可以像这样获得 FileAttributes:

if ((File.GetAttributes(fileNameAndPath) & FileAttributes.ReadOnly) > 0)
{
    // The file is read-only (i.e. write-protected)
}

请参阅文档:http: //msdn.microsoft.com/en-us/library/system.io.fileattributes.aspx

于 2010-05-13T11:36:41.097 回答
2

如果要检查文件是否为只读文件,则可以使用 进行检查File.GetAttributes(),如下所示:

if(File.GetAttributes(fileNameAndPath) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
{
  //it's readonly :)
}
于 2010-05-13T11:36:49.733 回答
1

我想你想看看类的HasPassword属性WorkBook

更多信息请访问:http: //msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.workbook.haspassword%28VS.80%29.aspx

编辑:在下面留下我的旧答案

你的意思是如果文件或工作簿是只读的?

要检查工作簿是否是只读的,WorkBook该类有一个ReadOnly属性。

否则,要检查文件,请查看使用IO.FileInfo框架中的类来获取文件属性,如以下代码所示:

FileInfo fsi = new FileInfo("filepathandname");
if ((fsi.Attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly )
{
    // it's readonly
}
于 2010-05-13T11:35:34.010 回答
0

本质上,只读和写保护是一回事。但是,您可能会遇到无法访问文件的情况,因为它正被另一个进程使用。在这种情况下,您尝试使用 FileShare 打开它,如下所示:

using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read, 
    FileShare.ReadWrite))
{
    ...
}
于 2010-05-13T12:07:16.873 回答
0

您可以检查File.GetAttributes

于 2010-05-13T11:38:20.843 回答
0

您可以检查保护与

activeDocument.ProtectionType
于 2014-02-19T14:14:56.770 回答