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

34 vues (au cours des 30 derniers jours)
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);

Réponse acceptée

Jeremy Hughes
Jeremy Hughes le 28 Mar 2021
fopen(filename,'a') % append mode
Then use fseek to go to where you want to overwrite.
  4 commentaires
Jeremy Hughes
Jeremy Hughes le 28 Mar 2021
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
Behzad Hosseinzadeh
Behzad Hosseinzadeh le 29 Mar 2021
@Walter Roberson thanks for your great explanation. It works for me now.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Low-Level File I/O dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by