delete selected content in a file

12 views (last 30 days)
nt
nt on 28 Aug 2013
I use fopen to create a file, and want to use \b to delete something, but it doesn't work. In the file, \b shows a rectangular. The code is as following
fileID = fopen('./data/newfile.txt','wt');
fprintf(fileID,'"aaaaa"');
fprintf(fileID,'\b\b');
fclose(fileID);

Answers (1)

Walter Roberson
Walter Roberson on 28 Aug 2013
The only reliable way to delete something in a text file is to open a new text file and copy all the content of the original file over to the new one except what you do not want to be there.
None of the operating systems that MATLAB runs on have the facility to delete in the middle of a file.
(If you were deleting only at the very end of the file, there are ways in the operating systems, but the ways are not supported by MATLAB)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!