目次
サイズ単位の定数
- PowerShellではサイズ単位の定数として、キロバイト
KB
, メガバイトMB
, ギガバイトGB
, テラバイトTB
, ペタバイトPB
が用意されています。 1KB
や100MB
のように数値+定数
とすることで利用できます。
Write-Host "1KB = $(1KB.ToString('#,#'))バイト" Write-Host "1MB = $(1MB.ToString('#,#'))バイト" Write-Host "1GB = $(1GB.ToString('#,#'))バイト" Write-Host "1TB = $(1TB.ToString('#,#'))バイト" Write-Host "1PB = $(1PB.ToString('#,#'))バイト"
出力結果
1KB = 1,024バイト 1MB = 1,048,576バイト 1GB = 1,073,741,824バイト 1TB = 1,099,511,627,776バイト 1PB = 1,125,899,906,842,624バイト
参考
参照
- (PowerShell Magazine) Converting to size units (KB, MB,GB,TB, and PB) without using PowerShell multipliers
- (Microsoft | Scripting) Formatting PowerShell Decimal Places