Как скопировать файл в localserver share folde с помощью приложения C# .NET windows?
Привет,
How to copy file in localserver share folde using c# .net windows application?
Я хочу скопировать файл в локальную общую папку с помощью c#. net.
но получаю ошибку:
Could not find a part of the path 'xx.xx.x.xx\shared\abc_1.zip'
Как решить эту проблему?
Мольбы о помощи.
заранее спасибо.
Анкит Агарвал
инженер-программист
Что я уже пробовал:
try { string ipAddress = txtIP.Text; //int port = int.Parse(txtPort.Text); for (int i = 0; i < arrayList.Count; i++) { using (Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) { zip.AddDirectory(arrayList[i].ToString()); //zip.Save(@"D:\abc" + "_" + (i + 1) + ".zip"); zip.Save(@"D:\abc" + "_" + (i + 1) + ".zip"); fileName = @"D:\abc" + "_" + (i + 1) + ".zip"; fname = "abc" + "_" + (i + 1) + ".zip"; File.Copy(fileName, txtIP.Text + @"\shared\" + fname); //Error in this line. MessageBox.Show(txtIP.Text + @"\\shared\" + fileName); //Task.Factory.StartNew(() => SendFile(ipAddress, port, fileName, shortFileName)); MessageBox.Show("Files zipped"); } } }