string sourcePath= @"F:\test\";
string targetPath= @"F:\transferedFiles\";
string filename="example.txt";
string sourceFile= System.IO.Path.Combine(sourcePath,filename);
string destFile = System.IO.Path.Combine(targetPath, filename);
System.IO.File.Move(sourceFile , destFile );
Эта программа работает на моем локальном компьютере, но на сервере она не работает.