双击PowerShell ISE编辑器中的文件名OPEN DEFAULT EDITOR

时间:2013-07-17 13:03:43

标签: powershell file-io openfiledialog

$fromDir = "C:\temp\STA\"
$controlFileArray = Get-ChildItem $fromDir\*.SSISDeploymentManifest | % { ($_.basename)}
echo $controlFilearray 

从上面的脚本中,我在一个变量中获取文件名,如何使用power shell双击此文件名,以便在所需的编辑器中打开它。

2 个答案:

答案 0 :(得分:0)

如果文件是c:\temp\t.txt try

$a = "c:\temp\t.txt"
& $a

答案 1 :(得分:0)

您可以使用Invoke-Item对文件执行默认操作:

$controlFileArray | Invoke-Item