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.
where |
|||||||||||||||
|
|
Check the Windows Server 2003 Resource Kit Tools. There is a utility called
It is the similar to mkfile on solaris. |
|||||||||
|
|
You can use the Sysinternals Contig tool. It has a |
|||||||||
|
|
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 :-) |
|||
|
|
|
Found an excellent utility that is configurable at https://github.com/SL5R0/GenFile. It fills the target file with random data, so there are no problems with sparse files, and for my purposes (testing compression algorithms) it gives a nice level of white noise. |
|||
|
|
Short of writing a full application, us
|
|||
|
|
|
|||
|
|
|
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 |
|||
|
|
|
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. |
|||||||||||
|
|
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. |
|||
|
|
|
Plain ol' C... this builds under Mingw GCC on WinXX and should work on any 'generic' C platform. Generates null file of specified size. Resultant file is NOT just a directory space-occupier entry, and in fact occupies the specified number of bytes. This is fast because no actual writes occur except for the byte written before close. My instance produces a file full of zeros - this could vary by platform; this prgm essentially sets up the directory structure for whatever data is hanging around.
|
||||
|
|
In cmd prompt: fsutil file createnew c:\temp\100MBfile.txt 104857600 |
|||||
|
|
You can try this C++ code:
maybe it will take some time to generate depending on your CPU speed... |
||||
|
|