PDA

Click to See Complete Forum and Search --> : Can you delete files or bytes in a file?


Iceman
Jan 21st, 2000, 02:19 PM
read the title

later,
Iceman

P.S. I finally made the program ive been buggin ppl with questions about so thanks to everyone

Bart
Jan 21st, 2000, 03:03 PM
The easiest way to delete a file is
kill filename

To delete bytes in a file, just open the file in binary mode, read the contents into a string variable, delete the bytes and write them back to the file.