我有一个c#控制台应用程序,它复制来自网络上不同目录的文件,并将它们放在服务器上的一个位置(Win Server 2008 R2)。当我运行应用程序时,我得到"文件未找到 - System.String [] 0文件被复制。"消息。
static void Main(string[] args)
{
string[] srcPath =
{
@"\\sharedloc1\HR\Org Docs",
@"\\sharedloc2\MKT\Org Docs"
};
string desPath = @"C:\Users\James\Desktop\my docs";
foreach (string d in srcPath)
{
xcopy(srcPath, desPath + @"\");
}
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
private static void xcopy(string[] SrcLoc, string FnlLoc)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = false;
startInfo.UseShellExecute = false;
startInfo.FileName = "copyFiles";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = "\"" + SrcLoc + "\"" + " " + "\"" + FnlLoc + "\"" + @" /d /y";
try
{
using (Process exeProcess = Process.Start(startInfo))
{
exeProcess.WaitForExit();
}
}
catch (Exception exp)
{
throw exp;
}
}
我们有大约15个目录要循环播放。
答案 0 :(得分:1)
这是问题所在:
foreach (string d in srcPath)
{
xcopy(srcPath, desPath + @"\");
}
你应该在foreach中使用d
:
foreach (string d in srcPath)
{
xcopy(d, desPath + @"\");
}
然后,您需要更改xcopy
方法以接受string
而不是string[]
。
执行以下操作时:
startInfo.Arguments = "\"" + SrcLoc + "\"" + " " + "\"" + FnlLoc + "\"" + @" /d /y";
您正在将String[]
转换为String
(运行时会在.ToString()
上调用SrcLoc
)。这就是它在您的流程参数中以System.String[]
结束的方式。
此外,这段代码除了破坏堆栈跟踪外什么都不做。
catch (Exception exp)
{
throw exp;
}
如果你想重新抛出错误,你应该throw;
。