1
1

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 スクリプト

Posted at
Get-ChildItem C:\hoge\fuga | Sort-Object -Descending | Select-Object -First 1 | Invoke-Item

エイリアスを使えば、もう少し短く書ける。

ls C:\hoge\fuga | sort -des | select -f 1 | ii

PowerShell は、この手のことがパイプを使ってサクサク書けるのが良いな、と思う。
入出力が(文字列ではなくて)オブジェクトそのものなので、細かいことを気にしなくてもだいたい思ったように動く。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?