以编程方式获取正在锁定excel工作簿的用户

本文关键字:excel 工作簿 用户 锁定 编程 方式 获取 | 更新日期: 2023-09-27 18:24:41

我使用C#framework 4.5、netoffice 1.6和sharpdevel 4.4.1从Outlook中操作位于网络共享上的excel工作簿。

在某个时候,我需要将工作簿对象(ewb)的文件访问权限更改为readwrite,如下所示:

ewb.ChangeFileAccess(Excel.Enums.XlFileAccess.xlReadWrite, System.Reflection.Missing.Value, true);

在更改文件访问权限之前,我会检查该文件是否已锁定在服务器上。如果文件被锁定,我会通知用户稍后重试该操作。

现在,我想在通知中包括锁定excel文件的用户名。我搜索了msdn,netoffice论坛,等等。。。并且还没有找到解决方案。我知道,如果你打开excel文件readwrite,它会将用户名存储在xlsx文件中。如何通过c#访问特定的信息?

编辑:我最终做了这个:

public string GetExcelFileOwner(string path, NetOffice.ExcelApi.Enums.XlFileFormat ffmt) {
        string tempmark = "~$";
        if(ffmt==NetOffice.ExcelApi.Enums.XlFileFormat.xlExcel8) {
            tempmark = "";
        }
        string uspath = Path.Combine(Path.GetDirectoryName(path), tempmark + Path.GetFileName(path));
        if (!File.Exists(uspath)) return "";
        var sharing = FileShare.ReadWrite | FileShare.Delete;
        using (var fs = new FileStream(uspath, FileMode.Open, FileAccess.Read, sharing))
        using (var br = new BinaryReader(fs, Encoding.Default)) {
            if(ffmt==NetOffice.ExcelApi.Enums.XlFileFormat.xlExcel8) {
                byte[] ByteBuffer = new byte[500];
                br.BaseStream.Seek(150, SeekOrigin.Begin);
                br.Read(ByteBuffer, 0, 500);
                return matchRegex(System.Text.Encoding.UTF8.GetString(ByteBuffer), @"(?='w'w'w)(['w, ]+)").Trim();
            }
            else {
                return br.ReadString();
            }
        }
    }
    private static string matchRegex(string txt, string rgx) {
        Regex r;
        Match m;
        try {
            r = new Regex(rgx, RegexOptions.IgnoreCase);
            m = r.Match(txt);
            if (m.Success) {
                return m.Groups[1].Value.ToString();
            }
            else {
                return "";
            }
        }
        catch {
            return "";
        }
    }

我们使用的是excel 2003和excel 2007+文件格式(.xls和.xlsx)。对于.xls,我必须查看.xls文件本身。对于.xlsx,锁定用户存储在~$temp文件中。我知道,对于.xls文件,它是脏代码,但我不知道.xls文件格式是如何构造的。因此,我只读取了一堆字节,其中包括ascii用户名,并使用正则表达式提取该用户名。

以编程方式获取正在锁定excel工作簿的用户

它将把用户名存储在xlsx文件中

否,不是.xlsx文件中的。Excel创建另一个文件来存储用户名。它启用了"隐藏文件"属性,因此您通常无法在资源管理器中看到它。

它通常与原始文件具有相同的名称,但前缀为~$。因此,对于名为test.xlsx的文件,您将得到名为~$test.xlsx的文件。它是一个二进制文件,包含默认代码页和utf-16中编码的用户名。显示其外观的十六进制转储:

0000000000: 0C 48 61 6E 73 20 50 61 │ 73 73 61 6E 74 20 20 20  ♀Hans Passant
0000000010: 20 20 20 20 20 20 20 20 │ 20 20 20 20 20 20 20 20
0000000020: 20 20 20 20 20 20 20 20 │ 20 20 20 20 20 20 20 20
0000000030: 20 20 20 20 20 20 20 0C │ 00 48 00 61 00 6E 00 73         ♀ H a n s
0000000040: 00 20 00 50 00 61 00 73 │ 00 73 00 61 00 6E 00 74     P a s s a n t
0000000050: 00 20 00 20 00 20 00 20 │ 00 20 00 20 00 20 00 20
0000000060: 00 20 00 20 00 20 00 20 │ 00 20 00 20 00 20 00 20
0000000070: 00 20 00 20 00 20 00 20 │ 00 20 00 20 00 20 00 20
0000000080: 00 20 00 20 00 20 00 20 │ 00 20 00 20 00 20 00 20
0000000090: 00 20 00 20 00 20 00 20 │ 00 20 00 20 00 20 00 20
00000000A0: 00 20 00 20 00          │

文件中奇怪的0x0C字是以字符(而不是字节)为单位的字符串长度,后面跟着54个字符以存储用户名,并用空格填充。最简单的阅读方式是使用BinaryReader.ReadString():

public static string GetExcelFileOwner(string path) {
    string uspath = Path.Combine(Path.GetDirectoryName(path), "~$" + Path.GetFileName(path));
    if (!File.Exists(uspath)) return "";
    var sharing = FileShare.ReadWrite | FileShare.Delete;
    using (var fs = new FileStream(uspath, FileMode.Open, FileAccess.Read, sharing))
    using (var br = new BinaryReader(fs, Encoding.Default)) {
        return br.ReadString();
    }
}

但不一定是最正确的方法,如果8位编码在您的区域设置中不起作用,您可能需要改进代码并尝试定位utf-16字符串(而不是使用ReadString)。请参见(),首先偏移0x37。请确保正确使用该方法,因为它有一个隐式竞争条件,所以请确保只在操作失败后使用它,并且无论如何都需要返回空字符串。我不能保证这种方法在所有Excel版本上都能正确工作,包括未来的版本,我只在工作站级机器上测试了Office 2013。

您对哪个部分有问题?

虽然我对xslx一无所知,但我只能猜测:你想打开文件并指定FileAccess;FileShare.ReadWrite如下:如何在C#中读取打开的excel文件,然后使用某种库将XSLX转换为DataTable,并提取您需要的特定行。