Powershell使用OpenFileDialog打开文件示例
本文向大家介绍Powershell使用OpenFileDialog打开文件示例,包括了Powershell使用OpenFileDialog打开文件示例的使用技巧和注意事项,需要的朋友参考一下
支持所有版本。
要添加某些文件到你的脚本中,下面一个例子使用一个文件对话框来获得一个文件:
function Show-OpenFileDialog { param ($Title = "Pick a File", $Filter = 'All|*.*|PowerShell|*.ps1') $type = 'Microsoft.Win32.OpenFileDialog' $dialog = New-Object -TypeName $type $dialog.Title = $Title $dialog.Filter = $Filter if ($dialog.ShowDialog() -eq $true) { $dialog.FileName } else { Write-Warning 'Cancelled' } }
现在你还可以控制这个窗体抬头和文件类型。