If you want to create dummy files in Windows you can simple create them by using fsutil:
1 |
fsutil file createnew <filename> <length in bytes> |
So in order to create a bulk file which is 1 GB in size you can go with:
1 |
fsutil file createnew c:\foo.bar 1073741824 |