我一直试图解决这个问题,但没有运气,我想弹出一个文件打开对话框,我已经能够使用我在网上找到的功能来完成,然后使用文件位置进一步向下我的脚本中的行,但我无法弄清楚。
这是功能
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 的新手,所以我不确定函数是如何工作的。