在Windows Server 2012上使用c#强制关闭打开的网络文件

本文关键字:文件 网络 2012 Server Windows | 更新日期: 2023-09-27 18:16:47

是否有任何方法可以强制关闭Server 2012上特定文件的任何实例?

为方便讨论,请调用到文件D:'Shares'Shared'Sharedfile.exe

的链接

我有c#代码,它将程序的最新版本复制到这个目录中,经常有人在白天使用该程序。关闭打开的文件句柄并替换文件工作得很好,因为这意味着下次用户打开程序时,他们拥有所有最新的更改。

然而,从服务器上的计算机管理中做这件事有点单调,所以我想知道是否有一种方法可以从c#代码中做到这一点?

我试过了,但是它没有我需要的正确的重载。也许File课上有什么我可以用的?

EDIT关闭文件的c#代码将在主机服务器上运行。

[DllImport("Netapi32.dll", SetLastError=true, CharSet = CharSet.Unicode)]
public static extern int NetFileClose(string servername, int id);

在Windows Server 2012上使用c#强制关闭打开的网络文件

您可以包装NetFileClose API,这也需要包装NetFileEnum API。像这样:

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
struct FILE_INFO_3 {
    public int fi3_id;
    public int fi3_permissions;
    public int fi3_num_locks;
    public string fi3_pathname;
    public string fi3_username;
}
static class NativeMethods {
    [DllImport("netapi32.dll", CharSet = CharSet.Unicode)]
    public extern static int NetFileEnum(
        string servername, 
        string basepath, 
        string username, 
        int level, 
        out IntPtr bufptr, 
        int prefmaxlen, 
        out int entriesread, 
        out int totalentries, 
        ref IntPtr resume_handle
    );
    [DllImport("netapi32.dll", CharSet = CharSet.Unicode)]
    public extern static int NetFileClose(string servername, int fileid);
    [DllImport("netapi32.dll")]
    public extern static int NetApiBufferFree(IntPtr buffer);
}

很丑的签名,对吧?让我们用一点有节制的爱来包裹它。

class RemoteFile {
    public RemoteFile(string serverName, int id, string path, string userName) {
        ServerName = serverName;
        Id = id;
        Path = path;
        UserName = userName;
    }
    public string ServerName { get; }
    public int Id { get; }
    public string Path { get; }
    public string UserName { get; }
    public void Close() {
        int result = NativeMethods.NetFileClose(ServerName, Id);
        if (result != 0) {
            // handle error decently, omitted for laziness
            throw new Exception($"Error: {result}");
        }
    }
}
IEnumerable<RemoteFile> EnumRemoteFiles(string serverName, string basePath = null) {
    int entriesRead;
    int totalEntries;
    IntPtr resumeHandle = IntPtr.Zero;
    IntPtr fileEntriesPtr = IntPtr.Zero;
    try {
        int result = NativeMethods.NetFileEnum(
            servername: serverName,
            basepath: basePath, 
            username: null, 
            level: 3, 
            bufptr: out fileEntriesPtr, 
            prefmaxlen: -1, 
            entriesread: out entriesRead, 
            totalentries: out totalEntries, 
            resume_handle: ref resumeHandle
        );
        if (result != 0) {
            // handle error decently, omitted for laziness
            throw new Exception($"Error: {result}");
        }
        for (int i = 0; i != entriesRead; ++i) {
            FILE_INFO_3 fileInfo = (FILE_INFO_3) Marshal.PtrToStructure(
                fileEntriesPtr + i * Marshal.SizeOf(typeof(FILE_INFO_3)), 
                typeof(FILE_INFO_3)
            );
            yield return new RemoteFile(
                serverName, 
                fileInfo.fi3_id, 
                fileInfo.fi3_pathname, 
                fileInfo.fi3_username
            );
        }
    } finally {
        if (fileEntriesPtr != IntPtr.Zero) {
            NativeMethods.NetApiBufferFree(fileEntriesPtr);
        }
    }
}

现在关闭一个特定的文件很容易:关闭它的所有打开的实例。

foreach (var file in EnumRemoteFiles(server, path)) {
    Console.WriteLine($"Closing {file.Path} at {file.ServerName} (opened by {file.UserName})");
    file.Close();
}

请注意,这段代码还不能完全用于生产,特别是错误处理很糟糕。此外,在我的测试中,似乎文件路径可能会受到一些混乱,这取决于它们是如何打开的(比如一个文件显示为C:''Path'File,在驱动器根之后有一个额外的反斜杠),所以您可能希望在验证名称之前进行规范化。不过,这已经涵盖了所有内容。