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.

link|improve this question

feedback

10 Answers

up vote 56 down vote accepted
fsutil file createnew <filename> <length>

where <length> is in bytes.

link|improve this answer
Excellent, this is exactly what I was looking for. – Leigh Riffel Jun 12 '09 at 13:34
14  
Beware that this only generates so called sparse file - you get a record in a folder with a file size but not actual data clusters assigned with the file. So for purposes like testing, zeroing or blocking off large blocks of data clusters it's useless. – ZXX Dec 21 '10 at 20:08
@ZXX +1 For my purposes I merely needed the file system to see the space as unavailable, but your information is helpful if someone else needs this. – Leigh Riffel Dec 22 '10 at 13:50
Sure am glad for StackOverflow, found what I needed real quick! – onaclov2000 Feb 22 '11 at 14:22
Great helps! thank you – q0987 Mar 15 at 14:57
feedback

Check the windows resource kit.

http://www.microsoft.com/Downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en

There is a utility called

 CREATEFIL.EXE
 -? : This message
 -FileName -- name of the new file
 -FileSize -- size of file in KBytes, default is 1024 KBytes

It is the similar to mkfile on solaris.

link|improve this answer
I'd rather not have to download the resource kit. – Leigh Riffel Jun 11 '09 at 18:42
you would only need the 1 exe from the resource kit, you don't have to have the whole thing on your production system. – Byron Whitlock Jun 11 '09 at 18:51
I'll give it a try, but I'd rather not have the additional file dependency. – Leigh Riffel Jun 11 '09 at 19:30
The file isn't downloading correctly for me now, but I can't imagine it being faster than the Contig tool mentioned by Johannes Rossel. – Leigh Riffel Jun 11 '09 at 21:30
feedback

You can use the Sysinternals Contig tool. It has a -n switch which creates a new file of a given size. It will create a file almost instantaneous.

link|improve this answer
Wow! Very fast to download and to run. The line I used is m:\contig -n M:\SpaceBuffer.tmp 5368709120 – Leigh Riffel Jun 11 '09 at 19:52
2  
Just want to check if this is a sparse file or does the file actually have data in it? – slolife Jun 2 '11 at 17:35
It's not a sparse file (as far as I know) and the file is empty. – Joey Jan 4 at 10:39
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 :-)

link|improve this answer
feedback
/*
creates an empty file, which can take 
all of the disk space. Just specify the desired file
size in the command line
*/
#include <windows.h>
#include <stdlib.h>
int main (int argc, char* ARGV[])
{
    int size;
    size = atoi(ARGV[1]);
    const char* full = "fulldisk.dsk";
    HANDLE hf = CreateFile(full, 
                           GENERIC_WRITE, 
                           0,
                           0,
                           CREATE_ALWAYS,
                           0,
                           0);
    SetFilePointer(hf, size, 0, FILE_BEGIN);
    SetEndOfFile(hf);
    CloseHandle(hf);	
    return 0;
}
link|improve this answer
feedback

Short of writing a full application, us Python guys can achieve files of any size with 4 lines, same snippet on Windows and Linux (os.stat() line is just a check).

>>> f = open('myfile.txt','w')
>>> f.seek(1024-1) # an example, pick any size
>>> f.write('\x00')
>>> f.close()
>>> os.stat('myfile.txt').st_size
1024L
>>>
link|improve this answer
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.

link|improve this answer
1  
can't you create 5 files and then append them ? Create them simultaniously using threading, and then append them :D – dassouki Jun 11 '09 at 18:44
I don't know if I could thread it without doing programming, but yes, I can copy the file a few times to get the size I need. In my case I don't need the file itself to be 5GB, just the space used up. – Leigh Riffel Jun 11 '09 at 18:51
1  
Writing to multiple files using threading sounds like a terrible idea, given how slow hard drives are ... Also, appending them is fairly expensive in terms of time so that probably fails the "quick" criteria. – Joey Jun 11 '09 at 19:14
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

link|improve this answer
feedback

I needed a regular 10 GB file for testing, so I couldn't use fsutil because it creates sparse files (thanks @ZXX).

@echo off

:: Create file with 2 bytes
echo.>file-big.txt

:: Expand to 1 KB
for /L %%i in (1, 1, 9) do type file-big.txt>>file-big.txt

:: Expand to 1 MB
for /L %%i in (1, 1, 10) do type file-big.txt>>file-big.txt

:: Expand to 1 GB
for /L %%i in (1, 1, 10) do type file-big.txt>>file-big.txt

:: Expand to 4 GB
rm file-4gb.txt
for /L %%i in (1, 1, 4) do type file-big.txt>>file-4gb.txt

del file-big.txt

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.

link|improve this answer
feedback

In cmd prompt: fsutil file createnew c:\temp\100MBfile.txt 104857600

link|improve this answer
1  
Thank you, but this is already the accepted answer. You are welcome to vote for the accepted answer and you may want to consider deleting your answer to avoid it getting down votes for being a duplicate. – Leigh Riffel Aug 5 '10 at 17:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.