Find and replace (overwriting) to the middle of an existing binary file
조회 수: 22 (최근 30일)
이전 댓글 표시
I'm trying to open a binary file for replacing without erasing all the content. For example I can read my binary file and convert it to the struct as follows, what I want to do is that to replace data section with my own data:
if ~exist('filename', 'var')
error(['''' filename ''' does not exist']); end
% Open file
fclose all;
fid = fopen(filename);
if fid < 3; error 'Error while opening file'; end
% Read one property at the time
while ~feof(fid)
% Read field name (keyword) and array size
keyword = deblank(fread(fid, 8, 'uint8=>char')');
num = fread(fid, 1, 'int32=>double', 0, 'b');
% Read and interpret data type
conv = 'single=>double';
wsize = 4;
% Read data array, which may be split into several consecutive arrays
data = [];
remnum = num;
while remnum > 0
% Read array size
buflen = fread(fid, 1, 'int32=>double', 0, 'b');
bufnum = buflen / wsize;
% Read data and append to array
%%% REPLACE DATA WITH NEW DATA %%%%
data = [data; fread(fid, bufnum, conv, 0, 'b')]; %<<========HERE========
remnum = remnum - bufnum;
end
end
fclose(fid);
댓글 수: 0
채택된 답변
Jeremy Hughes
2021년 3월 28일
fopen(filename,'a') % append mode
Then use fseek to go to where you want to overwrite.
댓글 수: 4
Jeremy Hughes
2021년 3월 28일
Yes, Walter is correct. I didn't read carefully enough. 'r+' mode allows you to move to a position in the file using fseek. fwrite should then write into the file at that position
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!