在C#代码中无法在网络路径上调用Get-ChildItem命令

时间:2015-10-22 16:18:52

标签: c# powershell get-childitem

我正在尝试从网络驱动器上的C#代码调用Get-childitem来检索xml文件,但它无法正常工作。代码不返回文件也不抛出异常。

    string FileSelectionCommand = "Get-ChildItem " + "\\Btapp-prod\\e$\\BizTalkMessages\\Proudction\\" + "*.xml -rec | Where-Object { $_.CreationTime -ge " + "\"" + searchdate + "\"" + "}";
        shell.Commands.AddScript(FileSelectionCommand);
        // Execute the script  
        var fileresults = shell.Invoke();

0 个答案:

没有答案