我正在将文件从一个路径复制到我的电脑中的另一个路径
string destpath= Application.StartupPath + @"\Multiple Documents1";
string soucepath= @"D:\Naresh WORK AREA\Naresh\Multiple Documents1";
if (!File.Exists(path))
{
DirectoryInfo dir = Directory.CreateDirectory(path);
}
System.IO.File.Copy(soucepath, destpath+@"\"+filename.doc, true);
它在单用户 inveronment 中运行良好。现在我正在使用 Windows 服务进行远程处理,我想将文件保存到服务器中,即我的服务正在运行的地方。如果我将源路径带到服务器,它不会将源路径识别为客户端系统路径。我知道目标路径是服务启动路径。但是我怎样才能将我的源路径带到服务运行系统。