-
-
Save saggie/3da37bb0d5e06d0259b48c78f2a09e0c to your computer and use it in GitHub Desktop.
PowerShell で拡張子ごとのファイル数を取得する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dir $(Get-Location).Path -recurse | Group Extension -NoElement | Sort Count -desc | |
# Powered by: http://acoustic-groove2.hatenablog.com/entry/2017/11/09/031113 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment