概要
ファイル選択ダイアログを表示して、選択されたファイル名をコンソールに出力するサンプル。
コード
Add-Type -AssemblyName PresentationFramework
function FileSelect()
{
$dlg = New-Object Microsoft.Win32.OpenFileDialog
# フィルタ設定
$dlg.Filter = "テキストファイル|*.txt|HTML|*.htm;*.html|CSVファイル|*.csv"
# ダイアログ表示
$result = $dlg.ShowDialog()
# 戻り値確認
if ($result -eq $true) {
Write-Host $dlg.FileName -ForegroundColor Cyan
} else {
Write-Host "選択キャンセル" -ForegroundColor Cyan
}
}
実行例
動作確認した環境
- PowerShell V4 (Windows 8.1)
- PowerShell V5 (Windows 10)