Find and replace (overwriting) to the middle of an existing binary file

15 次查看(过去 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);

采纳的回答

Jeremy Hughes
Jeremy Hughes 2021-3-28
fopen(filename,'a') % append mode
Then use fseek to go to where you want to overwrite.
  4 个评论
Jeremy Hughes
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 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