command line - Creating a large file from Windows' commandline -



command line - Creating a large file from Windows' commandline -

on mac can create random 5gb file this

dd if=dev/urandom of=~/random5gb bs=1000000 count=5000

is there equivalent command in windows xp? want able run in '.bat' file i'm creating.

try

fsutil file createnew <filename> <length>

windows command-line batch-file

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -