| General Databases (73) Linux (41) Outside the Cube (5088) Programming (679) C# C++ (7) Delphi (617) Java (8) JavaScript (31) perl (9) php (4) VBScript (1) Visual Basic (1) Web publishing (65) Windows (431) |
Can I delete some data from a file without rewriting the whole thing?
Not really. You can fseek() to the point in the file where you want to start deleting, but then you have to rewrite all the data from then on. There is no way to just yank stuff out of a file.
Comments:
| |||||||||||||||||||