yuanrui / blog

Some notes.
http://yuanrui.github.io
3 stars 0 forks source link

批处理获取剩余磁盘空间 #59

Open yuanrui opened 5 months ago

yuanrui commented 5 months ago
for /f "tokens=1-3" %a in ('WMIC LOGICALDISK GET FreeSpace^,Name^,Size ^|FINDSTR /I /V "Name"') do @echo wsh.echo "%b" ^& " free=" ^& FormatNumber^(cdbl^(%a^)/1024/1024/1024, 2^)^& " GiB"^& " size=" ^& FormatNumber^(cdbl^(%c^)/1024/1024/1024, 2^)^& " GiB" > %temp%\tmp.vbs & @if not "%c"=="" @echo( & @cscript //nologo %temp%\tmp.vbs & del %temp%\tmp.vbs

https://superuser.com/questions/896764/windows-command-line-get-disk-space-in-gb