How to Generate File of a determinate Size in Windows?
问题 How is the Best and fastest way to do it? 回答1: PowerShell: $f = new-object System.IO.FileStream c:\temp\test.dat, Create, ReadWrite $f.SetLength(42MB) $f.Close() This will create a file c:\temp\test.dat that consists of 42MB of nullbytes. You can of course just give byte count instead as well. (42MB = 42 * 1048576 for PowerShell) 回答2: I found this Page, I try it and work great. To create a single File use fsutil file createnew filename filesize To create a lot of Files use For /L %i in (1,1