- 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!
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/163358/image.png)
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 comentarios
Respuestas (2)
Steven Lord
el 25 de Abr. de 2017
"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 comentarios
AstroGuy1984
el 25 de Abr. de 2017
Editada: AstroGuy1984
el 25 de Abr. de 2017
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 comentarios
AstroGuy1984
el 25 de Abr. de 2017
Yes, I noticed this mistake immediately after I posted it an edited it accordingly. Thanks anyway.
Guillaume
el 25 de Abr. de 2017
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+'
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!