您的位置:首页 > 编程语言 > C#

C# copy file to remote shared folder

2015-04-01 15:10 218 查看
C# 中File.Copy()只支持本地文件操作,对于Shared Folder 是不支持的。

借鉴 http://growingtech.blogspot.jp/2012/06/copy-network-shared-folder-file-using-c.html 调通了Shared folder文件的拷贝.

public class Utilities
{
        System.Runtime.InteropServices.DllImport("advapi32.DLL", SetLastError = true)]
        public static extern int LogonUser(string lpszUsername, string lpszDomain, string lpszPassword, int dwLogonType, int dwLogonProvider, ref IntPtr phToken);
    
        public static void CopyFile2RemoteFolder(string from, string to, string username, string domain, string password)
        {
            IntPtr tokenHandle = new IntPtr(0);
            int returnValue = LogonUser(username, domain, password, 2, 0, ref tokenHandle);
            if (returnValue == -1)throw new Exception("Logon failed."); 

            System.Security.Principal.WindowsImpersonationContext impersonatedUser = null;
            System.Security.Principal.WindowsIdentity wid = new System.Security.Principal.WindowsIdentity(tokenHandle);
            impersonatedUser = wid.Impersonate(); 

            System.IO.File.Copy(from, to, true);
            impersonatedUser.Undo(); 
        }    

}


对该类的调用测试:

class Program
    {
        static void Main(string[] args)
        {
            // test copy file from local to remote share folder
            string local = @"D:\folder\filename.log";
            string to = @"\\sharedfolder\filename.log";
            Utilities.CopyFile2RemoteFolder(local, to, "username", "domain", "password");
        }
    }



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐