delete selected content in a file

조회 수: 12 (최근 30일)
nt
nt 2013년 8월 28일
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);

답변 (1개)

Walter Roberson
Walter Roberson 2013년 8월 28일
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)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by