How can I create a file of a certain size in Windows XP and later?
Learn how to create a file of a certain size in Windows XP and in later versions. fsutil file createnew For example,
John Savill
November 27, 2003
1 Min Read
A. If you need to create a file of a certain size and the file contents don't matter, you can use the Fsutil command as follows:
fsutil file createnew
For example,
fsutil file createnew d:temp1mbfile.txt 1000000
creates a 1MB file named 1mbfile.txt in the d:temp folder. I've successfully used this command to create a very large file to reduce the amount of free space when I was using a buggy installation program that couldn't address too much free space.
Learn more from "How do I create a sparse file of a specific size in Windows XP and greater?"
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like