In the same vein as http://stackoverflow.com/questions/257844/quickly-create-a-large-file-on-a-linux-system I'd like to quickly create a large file on a windows system. By large I'm thinking 5GB. The content doesn't matter. A built in command or short batch file would be preferable, but I'll accept an application if there are no other easy ways.
|
feedback
|
where | |||||||||||||
feedback
|
|
Check the windows resource kit. There is a utility called
It is the similar to mkfile on solaris. | |||||||||
feedback
|
|
You can use the Sysinternals Contig tool. It has a | |||||||||
feedback
|
|
Check out RDFC http://www.bertel.de/software/rdfc/index-en.html RDFC is probably not the fastest but it does allocate data blocks. The absolutely fastest would have to use lower level API to just obtain cluster chains and put them into MFT without writing data. Beware that there's no silver bullet here - if "creation" returns instnatly that means you got a sparse file which just fakes a large file but you won't get data blocks/chains till you write into it. If you just read is you'd get very fast zeros whihc could make you believe that your drive all of the sudden got blazingly fast :-) | |||
|
feedback
|
| |||
|
feedback
|
|
Short of writing a full application, us
| |||
|
feedback
|
|
I found a solution using DEBUG at http://www.scribd.com/doc/445750/Create-a-Huge-File, but I don't know an easy way to script it and it doesn't seem to be able to create files larger than 1 GB. | |||||||||||
feedback
|
|
I was searching for a way to generate large files with data..not just sparse file..came across the below technique. http://www.windows-commandline.com/2009/07/how-to-create-large-dummy-file.html | |||
|
feedback
|
|
I needed a regular 10 GB file for testing, so I couldn't use
I wanted to create a 10 GB file, but for some reason it only showed up as 4 GB, so I wanted to be safe and stopped at 4 GB. If you really want to be sure your file will be handled properly by the operating system and other applications, stop expanding it at 1 GB. | |||
|
feedback
|
|
In cmd prompt: fsutil file createnew c:\temp\100MBfile.txt 104857600 | |||||
feedback
|