Please try to suggest me how to do this. I need to copy or move files from one system to another system. I did this but it saying invalid path..
var fileName = "Text.txt";
var local = Path.Combine(@"C:\\public_html\\TEST\\gr_library\\", fileName );
var remote = Path.Combine(@"XXX.XXX.X.X\\C:\\public_html\\TEST\\gr_library\\", fileName );
File.Move(remote, local );
Please give some code snippet which is executable...