Why do I have an error saying "Invalid file identifier"?
12 次查看(过去 30 天)
显示 更早的评论
Hello, I have an error saying:
Error using fprintf
Invalid file identifier. Use fopen to generate
a valid file identifier.
Error in EXP1_Generate_batch_ver1 (line 106)
fprintf(fileID,'Formattyp = 1\n');
this is my code:
myBatchName = '\\\\data-be\\data-ti-2019\\eit\\50_Labore\\T016-Photovoltaik_1\\06_Projekte\\02_Aktiv\\2019_Schenker_Storen\\DOCS_Hannah\\Experiment1\\02_Generate_Batch_File\\Batch.csv';
fileID = fopen(myBatchName,'w');
fprintf(fileID,'Formattyp = 1\n');
fprintf(fileID,'Save = month\n');
fprintf(fileID,'name ; longitude ; latitude ; altitude ; hor ; azimuth ; inclination \n'); %column titles
path='\\\\data-be\\data-ti-2019\\eit\\50_Labore\\T016-Photovoltaik_1\\06_Projekte\\02_Aktiv\\2019_Schenker_Storen\\DOCS_Hannah\\Experiment1\\02_Generate_Batch_File\\';
what am I doing wrong? Thanks :)
0 个评论
回答(1 个)
the cyclist
2021-8-18
I would guess that the value of fileID that is generated is -1, meaning that there was a problem with the fopen function. A likely culprit is that you do not have write permissions.
0 个评论
另请参阅
类别
在 Help Center 和 File 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!