I am dynamically creating dot net c# console application on my local system (i'm using - this code sourcePath = @"D:\temp\DirectoryToZip.zip"; destFile="@"\192.8.54.227\Test" ; System.IO.File.Copy(sourceFile, destFile, true))
.
C#:
var sourcePath = @"D:\temp\DirectoryToZip.zip";
var destFile= @"\192.8.54.227\Test" ;
System.IO.File.Copy(sourceFile, destFile, true))
I am trying file move, but it cannot working. I am trying multiple links
How to copy file from local system to other system in C# (windows app)? https://www.codeproject.com/Questions/1136426/Copy-file-from-local-pc-to-server-using-Csharp https://www.codeproject.com/Questions/423029/how-to-copy-files-from-Local-to-remote-server-with
etc...
I want to copy this zip file to my remote server system(Static IP IIS server). I use C#