create on big temp-file

  • Thread starter Thread starter news
  • Start date Start date
N

news

Hi,
I need to create one big file at size: 500/MB.
Is thier anyone who can recommend any software for this??

regards,
kenneth
 
news said:
Hi,
I need to create one big file at size: 500/MB.
Is thier anyone who can recommend any software for this??

regards,
kenneth

You don't need any special software for this - a humble batch
file will do:

@echo off
echo n c:\big.bin > c:\test.scr
echo rbx >> c:\test.scr
echo 1dce >> c:\test.scr
echo w >> c:\test.scr
echo q >> c:\test.scr
debug c:\big.big < c:\test.scr
del c:\test.scr
echo 500 MBytes written to c:\Big.bin
 
Tanks Pegasus,
The script is working greate, but how can I change the size if I need the
size "250/MB"??
// Kenneth
 
Take only half the number that I specified!
If you're not used to calculating in hex, use
calc.exe. It's a standard part of Windows.
In its scientific mode it has a button for hexadecimal
calculations.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top