Monday, June 21, 2010

Create a Huge File of Any Size

You can create a file of any size using nothing more than what's supplied with Windows. Start by converting the desired file size into hexadecimal notation.

  • You can use the Windows Calculator in Scientific mode do to this.
  • Suppose you want a file of 1 million bytes.
  • Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.)
  • Pad the result with zeroes at the left until the file size reaches eight digits—000F4240.

Now open a command prompt window.

1. Enter the command DEBUG BIGFILE.DAT and ignore the File not found message.

2.Type RCX and press Enter.

3. Debug will display a colon prompt. Enter the last four digits of the hexadecimal number you calculated (4240, in our example) and then press Enter

4. Type RBX and press Enter,

5. Then enter the first four digits of the hexadecimal size (000F, in our example) and press Enter

6.Then Enter W for Write

7.Then enter Q for Quit.

8.You've just created a 1-million-byte file using Debug.
you can create a file of any desired size using the same technique.The created file will be in present working directory

No comments:

Post a Comment