- Open the file with a value for permission that includes a plus sign, '+'.
- Call fseek or frewind between read and write operations. For example, do not call fread followed by fwrite, or fwrite followed by fread, unless you call fseek or frewind between them."
Matlab help! Need a little help!
1 次查看(过去 30 天)
显示 更早的评论
From the image, here is my code. I'm having a little trouble creating a text file. I want the 'count' to return the number of characters successfully read but it returns '0' I don't know why... I want my text to be 'My name is Jonathan Diaz' Please help!
0 个评论
回答(2 个)
Steven Lord
2017-4-25
"To read and write to the same file:
You probably also don't want to use fread here. The fread and fwrite functions are intended for binary data, while fprintf and fscanf are intended for text data.
0 个评论
AstroGuy1984
2017-4-25
编辑:AstroGuy1984
2017-4-25
Your first invocation of fread() failed because you had closed the file first, making fid invalid. You seem to have noticed this.
Your second attempt is because of the differences of reading the file versus writing it. In addition, the position of MATLAB within the file. Notice that the following won't work either:
fid = fopen('tst.txt', 'wt');
fprintf(fid, 'Hello there Jonathan');
frewind(fid);
[~, count] = fread(fid, '*char');
fclose(fid);
You REALLY don't want to read and write a file at the same time. It's asking for trouble. Yes, you can use the '+' character but unless you are absolutely sure of where you are in a file, it's going to become a nightmare quickly. Instead, you'll want to close the file and then reopen it in READ mode... then run fread().
3 个评论
AstroGuy1984
2017-4-25
Yes, I noticed this mistake immediately after I posted it an edited it accordingly. Thanks anyway.
Guillaume
2017-4-25
Ok. I still disagree with your comment "You REALLY don't want to read and write a file at the same time." in general. It is a common pattern when you want to search and replace in file. However, in this case, it would indeed make more sense to close the file and reopen it in read mode.
Note that your example that does not work can be made to work simply by changing 'wt' to 'wt+'
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!