【问题标题】:Access a Remote Directory from C#从 C# 访问远程目录
【发布时间】:2011-07-22 23:00:15
【问题描述】:

我正在尝试从 asp.net 中的 C# 程序访问远程网络共享。我需要的是类似的东西

function download(dirname)
{
    directory = (This is the part I don't know how to do)

    for dir in directory:
        download(dir);

    for file in directory:
        copyfile(file);

}

我的问题是该目录需要用户名和密码才能访问,而我不知道如何提供它们。感谢您提供的任何帮助。

【问题讨论】:

标签: c# asp.net file-transfer network-share


【解决方案1】:

根据Daniel Hilgarth's answer 上的代码示例,我创建了一个可以使用的Nuget package,以便我们可以在一个地方进行维修。

【讨论】:

【解决方案2】:

使用此类进行身份验证,而不仅仅是使用简单的文件操作:

/// <summary>
/// Represents a network connection along with authentication to a network share.
/// </summary>
public class NetworkConnection : IDisposable
{
    #region Variables

    /// <summary>
    /// The full path of the directory.
    /// </summary>
    private readonly string _networkName;

    #endregion

    #region Constructors

    /// <summary>
    /// Initializes a new instance of the <see cref="NetworkConnection"/> class.
    /// </summary>
    /// <param name="networkName">
    /// The full path of the network share.
    /// </param>
    /// <param name="credentials">
    /// The credentials to use when connecting to the network share.
    /// </param>
    public NetworkConnection(string networkName, NetworkCredential credentials)
    {
        _networkName = networkName;

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

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

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

    #endregion

    #region Events

    /// <summary>
    /// Occurs when this instance has been disposed.
    /// </summary>
    public event EventHandler<EventArgs> Disposed;

    #endregion

    #region Public methods

    /// <summary>
    /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
    /// </summary>
    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    #endregion

    #region Protected methods

    /// <summary>
    /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
    /// </summary>
    /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
    protected virtual void Dispose(bool disposing)
    {
        if (disposing)
        {
            var handler = Disposed;
            if (handler != null)
                handler(this, EventArgs.Empty);
        }

        WNetCancelConnection2(_networkName, 0, true);
    }

    #endregion

    #region Private static methods

    /// <summary>
    ///The WNetAddConnection2 function makes a connection to a network resource. The function can redirect a local device to the network resource.
    /// </summary>
    /// <param name="netResource">A <see cref="NetResource"/> structure that specifies details of the proposed connection, such as information about the network resource, the local device, and the network resource provider.</param>
    /// <param name="password">The password to use when connecting to the network resource.</param>
    /// <param name="username">The username to use when connecting to the network resource.</param>
    /// <param name="flags">The flags. See http://msdn.microsoft.com/en-us/library/aa385413%28VS.85%29.aspx for more information.</param>
    /// <returns></returns>
    [DllImport("mpr.dll")]
    private static extern int WNetAddConnection2(NetResource netResource, 
                                                 string password, 
                                                 string username, 
                                                 int flags);

    /// <summary>
    /// The WNetCancelConnection2 function cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.
    /// </summary>
    /// <param name="name">Specifies the name of either the redirected local device or the remote network resource to disconnect from.</param>
    /// <param name="flags">Connection type. The following values are defined:
    /// 0: The system does not update information about the connection. If the connection was marked as persistent in the registry, the system continues to restore the connection at the next logon. If the connection was not marked as persistent, the function ignores the setting of the CONNECT_UPDATE_PROFILE flag.
    /// CONNECT_UPDATE_PROFILE: The system updates the user profile with the information that the connection is no longer a persistent one. The system will not restore this connection during subsequent logon operations. (Disconnecting resources using remote names has no effect on persistent connections.)
    /// </param>
    /// <param name="force">Specifies whether the disconnection should occur if there are open files or jobs on the connection. If this parameter is FALSE, the function fails if there are open files or jobs.</param>
    /// <returns></returns>
    [DllImport("mpr.dll")]
    private static extern int WNetCancelConnection2(string name, int flags, bool force);

    #endregion

    /// <summary>
    /// Finalizes an instance of the <see cref="NetworkConnection"/> class.
    /// Allows an <see cref="System.Object"></see> to attempt to free resources and perform other cleanup operations before the <see cref="System.Object"></see> is reclaimed by garbage collection.
    /// </summary>
    ~NetworkConnection()
    {
        Dispose(false);
    }
}

#region Objects needed for the Win32 functions
#pragma warning disable 1591

/// <summary>
/// The net resource.
/// </summary>
[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;
}

/// <summary>
/// The resource scope.
/// </summary>
public enum ResourceScope
{
    Connected = 1, 
    GlobalNetwork, 
    Remembered, 
    Recent, 
    Context
} ;

/// <summary>
/// The resource type.
/// </summary>
public enum ResourceType
{
    Any = 0, 
    Disk = 1, 
    Print = 2, 
    Reserved = 8, 
}

/// <summary>
/// The resource displaytype.
/// </summary>
public enum ResourceDisplaytype
{
    Generic = 0x0, 
    Domain = 0x01, 
    Server = 0x02, 
    Share = 0x03, 
    File = 0x04, 
    Group = 0x05, 
    Network = 0x06, 
    Root = 0x07, 
    Shareadmin = 0x08, 
    Directory = 0x09, 
    Tree = 0x0a, 
    Ndscontainer = 0x0b
}
#pragma warning restore 1591
#endregion

用法:

using(new NetworkConnection(_directoryPath, new NetworkCredential(_userName, _password)))
{
    File.Copy(localPath, _directoryPath);
}

【讨论】:

  • 您的 EventsHelper 来自哪里?
  • GARRRR 我花了 5 个小时调试这个问题,结果发现我输错了密码。现在我修复了它,我把这段代码放回了它所属的方式,它工作正常。感谢您的所有帮助。
  • @Serge 这个问题和答案是关于连接到文件共享​​>。远程桌面不是这里的主题,对不起。你可能想问一个新问题。当您这样做时,请准确描述您的问题
  • @Serge 这可能有多种原因,其中一个更可能的原因是防火墙。不仅在机器本身上,而且在每个 Amazon VM 前面的防火墙上。听起来,这是您现在应该在 ServerFault 上询问的问题。它与 C# 或一般开发无关。当您能够从 Windows 资源管理器而不是您的应用程序访问共享时,您应该回到这里。
  • 好的。我比较明白。谢谢!
【解决方案3】:

您需要冒充用户查看this question

实际上,您需要调用登录来创建可用于访问文件系统的 Windows 身份

关于主题here还有一些讨论

【讨论】:

  • 我实际上已经为此奋斗了一段时间。我已经使用这些站点来运行某些东西(如果您愿意,我可以发布代码)thescarms.com/dotnet/impersonate.aspxsupport.microsoft.com/kb/306158 似乎我无法模拟远程域上的用户。也许我做错了什么。建议?
  • @mrK:在我的回答中使用这个类,它应该可以工作。当您尝试在资源管理器中访问共享时,它使用与 windows 相同的机制。
  • 7年后只想跳到这里。除非在您的计算机(工作组)或公司域上设置了用户,否则您无法模拟用户。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-05-03
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多