c# - .Net Core 中的网络文件共享访问

标签 c# .net-core

我正在尝试使用 .NET Core 访问网络文件共享。我已经看到了 Net Standard 的这个解决方案:

How to provide user name and password when connecting to a network share

public class NetworkConnection : IDisposable
    {
        string _networkName;

    public NetworkConnection(string networkName, 
        NetworkCredential credentials)
    {
        _networkName = networkName;

        var netResource = new NetResource()
        {
            Scope = ResourceScope.GlobalNetwork,
            ResourceType = ResourceType.Disk,
            DisplayType = ResourceDisplaytype.Share,
            RemoteName = networkName
        };

        var userName = string.IsNullOrEmpty(credentials.Domain)
            ? credentials.UserName
            : string.Format(@"{0}\{1}", credentials.Domain, credentials.UserName);

        var result = WNetAddConnection2(
            netResource, 
            credentials.Password,
            userName,
            0);

        if (result != 0)
        {
            throw new Win32Exception(result);
        }   
    }

    ~NetworkConnection()
    {
        Dispose(false);
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        WNetCancelConnection2(_networkName, 0, true);
    }

    [DllImport("mpr.dll")]
    private static extern int WNetAddConnection2(NetResource netResource, 
        string password, string username, int flags);

    [DllImport("mpr.dll")]
    private static extern int WNetCancelConnection2(string name, int flags,
        bool force);
    }

    [StructLayout(LayoutKind.Sequential)]
    public class NetResource
    {
        public ResourceScope Scope;
        public ResourceType ResourceType;
        public ResourceDisplaytype DisplayType;
        public int Usage;
        public string LocalName;
        public string RemoteName;
        public string Comment;
        public string Provider;
    }

    public enum ResourceScope : int
    {
        Connected = 1,
        GlobalNetwork,
        Remembered,
        Recent,
        Context
    };

    public enum ResourceType : int
    {
        Any = 0,
        Disk = 1,
        Print = 2,
        Reserved = 8,
    }

    public enum ResourceDisplaytype : int
    {
        Generic = 0x0,
        Domain = 0x01,
        Server = 0x02,
        Share = 0x03,
        File = 0x04,
        Group = 0x05,
        Network = 0x06,
        Root = 0x07,
        Shareadmin = 0x08,
        Directory = 0x09,
        Tree = 0x0a,
        Ndscontainer = 0x0b
    }

我已阅读不建议在核心中使用 [DllImport("mpr.dll")]。有没有 .net 核心方法可以做到这一点。

最佳答案

查看:https://www.nuget.org/packages/SimpleImpersonation/

使用它,您可以通过简单的方式访问文件共享:

var credentials = new UserCredentials(domain, username, password);
var result = Impersonation.RunAsUser(credentials, logonType, () =>
{
    return System.IO.Directory.GetFiles( @"\\server\share" );
}); 

关于c# - .Net Core 中的网络文件共享访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56065257/

相关文章:

c# - Microsoft.ReportViewer.WinForms.V15 与 .NET Core 3.1 不兼容 - 如何在 WPF Core 中显示 RDLC?

c# - 遵循 DRY 原则的业务规则验证

c# - C#属性中 'value'保留字的类型是什么

c# - IOCP 线程 - 澄清?

c# - Dotnet6 摆脱 Main 方法 - 如何在 Dotnet 5 中更改以下内容?

c# - 使用迁移 Entity Framework Core 添加数据而不指定 id

c# - 文件夹中的多个图像

c# - 如何使用其类型名称实例化泛型类?

linux - 从哪里获得适用于 Linux 的 msbuild

c# - 读流两次?