PowerShell 技能连载 - 使用“打开文件”对话框
适用于 PowerShell 3.0 及以上版本
以下是一个快捷的函数,可以用在 ISE 编辑器和 PowerShell 控制台中(适用于 PowerShell 3.0 及以上版本):Show-OpenFileDialog
。
function Show-OpenFileDialog
{
param
(
$StartFolder = [Environment]::GetFolderPath('MyDocuments'),
$Title = 'Open what?',
$Filter = 'All|*.*|Scripts|*.ps1|Texts|*.txt|Logs|*.log'
)
Add-Type -AssemblyName PresentationFramework
$dialog = New-Object -TypeName Microsoft.Win32.OpenFileDialog
$dialog.Title = $Title
$dialog.InitialDirectory = $StartFolder
$dialog.Filter = $Filter
$resultat = $dialog.ShowDialog()
if ($resultat -eq $true)
{
$dialog.FileName
}
}
这个函数将打开一个“打开文件”对话框。用户可以选择一个文件,并且选择的文件对象将返回给 PowerShell。所以下次您的脚本需要打开一个 CSV 文件时,您可能就能用上。
PowerShell 技能连载 - 使用“打开文件”对话框
http://blog.vichamp.com/2014/08/13/using-the-openfile-dialog/