0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windowsバッチ(.bat)学習メモ ディレクトリの使用中容量取得

Posted at
※容量はKB・MB・GBではなく、バイト単位なので注意
@echo off

set directory="C:\新しいフォルダー"

for /f "tokens=3" %%a in ('dir %directory% ^| find "バイト" ^| find /v "空き"') do set nowUsing=%%a

echo %nowUsing:,=%
実行結果
nnnnn
日本語が文字化けする場合
@echo off
chcp 65001

set directory="C:\新しいフォルダー"

for /f "tokens=3" %%a in ('dir %directory% ^| find "bytes" ^| find /v "free"') do set nowUsing=%%a

echo %nowUsing:,=%
実行結果
nnnnn
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?