i have text file which i want to erase in C++ and python . How to do it?Do i have to assign the file pointer to a null value string?
|
|
In python:
Or alternatively, if you have already an opened file:
In C++, you could use something similar. |
|||||||||
|
|
You have to overwrite the file. In C++:
|
|||||||
|
|
|||
|
|
|
You cannot "erase" from a file in-place unless you need to erase the end. Either be content with an overwrite of an "empty" value, or read the parts of the file you care about and write it to another file. |
|||||||
|
|
Assigning the file pointer to null inside your program will just get rid of that reference to the file. The file's still there. I think the |
|||||||||
|
|
Since text files are sequential, you can't directly erase data on them. Your options are:
Look at the |
||||