12-13-2005 09:18 AM
12-13-2005 12:10 PM
as far as I know you cannot delete a byte from the middle of a file. one easy safe way is that you can write a new file with the contents of the old file up to location x and then continue writing the new file from old file location x+y to the end, and then rename the file. you can also do this in place if you are careful not to overwrite data you might want later and to be aware of where you are in the file. in your case a fixed header size, and a fixed removal size would make things easy and quick, but that depends on how your data is.
if someone knows how do delete a byte from the middle of a file please let us all know.
12-13-2005 04:38 PM
Hello Wim.