ワンライナー集
Windows 10 でディレクトリ容量を計算する
$totalsize=[long]0;gci -File -r -fo -ea Silent|%{$totalsize+=$_.Length};$totalsize
ソース: How can I check the size of a folder from the Windows command line?
$totalsize=[long]0;gci -File -r -fo -ea Silent|%{$totalsize+=$_.Length};$totalsize
ソース: How can I check the size of a folder from the Windows command line?
misc/oneliners (最終更新日時 2021-04-11 21:43:00 更新者 dossist)