Click here to Skip to main content
15,888,401 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a task to be done transfer of files from one machine to other machine using C#.So I have seen many links and articles to transfer files from one machine to other machine.I want to know if we want to transfer files do we need to have the Windows Identity ? or any login credentials .

My Code

C#
if (!Directory.Exists(destinationFolder))
        Directory.CreateDirectory(destinationFolder + "\\" + DateTime.Now.ToString("ddMMyyyy"));
    string[] files = Directory.GetFiles(sourceFolder);
    foreach (string file in files)
    {
        string name = Path.GetFileName(file);
        string dest = Path.Combine(destinationFolder, name );
        File.Copy(file, dest);
    }
    string[] folders = Directory.GetDirectories(sourceFolder);
    foreach (string folder in folders)
    {
        string name = Path.GetFileName(folder);
        string dest = Path.Combine(destinationFolder, name);
        CopyFolder(folder, dest);
    }

Can any one tell me the pros and cons of transfer of files using C# over LAN?

When I am copying the files it is saying "Logon failure: unknown user name or bad password."

How can we handle this login to the windows account?
Posted
Comments
pradiprenushe 29-Mar-13 8:19am    
Try this link
http://stackoverflow.com/questions/7445508/moving-file-to-another-computer
http://stackoverflow.com/questions/1432213/copy-file-on-a-network-shared-drive
hemantwithu 1-Apr-13 1:42am    
If we have a folder in the network shared path so How can we transfer the file with login credentials ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900