PowerShell 技能连载 - 创建一大堆测试文件

适用于 PowerShell 所有版本

如果您需要对系统进行压力测试,或因为别的原因需要大量测试文件,以下是在瞬间创建大量文件(可以是大文件)的代码:

$Path = "$env:temp\hugefile.txt"
$Size = 200MB

$stream = New-Object System.IO.FileStream($Path, [System.IO.FileMode]::CreateNew)
$stream.Seek($Size, [System.IO.SeekOrigin]::Begin)
$stream.WriteByte(0)
$Stream.Close()

explorer.exe "/select,$Path"

PowerShell 技能连载 - 创建一大堆测试文件

http://blog.vichamp.com/2014/12/24/creating-huge-dummy-files/

作者

吴波

发布于

2014-12-24

更新于

2022-07-06

许可协议

评论