循环遍历字符串数组并将其元素传递给方法

时间:2016-08-04 21:40:33

标签: c# visual-studio

我有一个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个目录要循环播放。

1 个答案:

答案 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;