2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PowerShellメモ ファイル選択ダイアログ

Last updated at Posted at 2017-01-19

概要

ファイル選択ダイアログを表示して、選択されたファイル名をコンソールに出力するサンプル。

コード

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
    }
}

実行例

ps38.png

動作確認した環境

  • PowerShell V4 (Windows 8.1)
  • PowerShell V5 (Windows 10)
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?