使用控制台应用程序将文件从本地传输到另一台机器上的虚拟目录

本文关键字:一台 机器 虚拟 应用程序 控制台 文件 传输 | 更新日期: 2023-09-27 18:12:14

我有一个需求,我必须将一个文件从本地客户机传输到另一台机器的虚拟目录。

我可以浏览主机的虚拟目录,并在客户端查看该目录下的所有文件。文件将从本地的c:'test.txt传输到http://myserver:11211/VirtualDirectory

使用控制台应用程序将文件从本地传输到另一台机器上的虚拟目录

您可以尝试使用简单的文件。包含在网络连接中的副本,如下所示:

using (new NetworkConnection(@"''myserver:11211'VirtualDirectory", writeCredentials)) {
   File.Copy(@"c:'test.txt", @"''myserver:11211'VirtualDirectory'test.txt");
}

使用这个NetworkConnection类:

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, "Error connecting to remote share");
        }   
    }
    ~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
}

如何在连接到网络共享时提供用户名和密码