0

我一直试图解决这个问题,但没有运气,我想弹出一个文件打开对话框,我已经能够使用我在网上找到的功能来完成,然后使用文件位置进一步向下我的脚本中的行,但我无法弄清楚。

这是功能

Function Get-FileName()
{   
 [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") |
 Out-Null

 $OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
 $OpenFileDialog.initialDirectory = "C:\Users\$($env:username)\Documents\"
 $OpenFileDialog.filter = "CSV's (*.csv)| *.csv"
 $OpenFileDialog.ShowDialog() | Out-Null
 $OpenFileDialog.filename
}

我是 powershell 的新手,所以我不确定函数是如何工作的。

4

1 回答 1

2

将它保存在一个变量中,并随时使用它。

$location = Get-FileName
copy $location c:\temp
start $location
于 2013-07-15T20:24:57.047 回答