How to print same input file name as the output file name
8 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am working on analyzing text files. I used fopen to open the txt file as following:
fid = fopen('output file name','w');
table = [t1(:),t2(:),t3(:)];
formatSpec ='%s,%1.1f,%1.1f,%1.1f\n';
for i= 1:length(x)
fprintf(fid,formatSpec,s{i,:}',table(i,:));
end
fclose(fid);
The code above is part of my code, which is the part that I use to print the output. The result of this code will print the output file name in my current folder.
How can I make the output text file name the same name as the input file name? Instead of typing the text file manually and sometimes I forget to change the output file's name.
0 件のコメント
採用された回答
Adam Danz
2021 年 1 月 17 日
編集済み: Adam Danz
2021 年 1 月 17 日
How are you getting the input file name in the first place? If it's stored as a variable, use that variable to name the output file.
fname = 'output file name';
fid = fopen(fname,'w');
or with file extension
fname = 'output file name';
fid = fopen([fname,'.txt'],'w');
2 件のコメント
Image Analyst
2021 年 1 月 18 日
You need to put it in a different folder or else you'll overwrite your input file with your output file since it has the same name! If you didn't do this, then your input file is now toast. It will have whatever you wrote to your output file.
その他の回答 (1 件)
Image Analyst
2021 年 1 月 18 日
Try this:
[inputFolder, inputBaseFileNameNoExt, ext] = fileparts(fullInputFileName);
outputFolder = fullfile(inputFolder, '/Output files'); % Wherever you want.
if ~isfolder(outputFolder)
% Folder does not exist so create it.
mkdir(outputFolder);
end
% Output file uses the same name as the input file, it's just in a different folder.
fullOutputFileName = fullfile(outputFolder, [inputBaseFileNameNoExt, ext]);
fid = fopen(fullOutputFileName, 'wt'); % Use wt to open for writing in text mode.
% Code below is the same as yours. I hope it works.
table = [t1(:),t2(:),t3(:)];
formatSpec ='%s,%1.1f,%1.1f,%1.1f\n';
for i= 1:length(x)
fprintf(fid, formatSpec,s{i,:}',table(i,:));
end
fclose(fid);
4 件のコメント
Image Analyst
2021 年 1 月 18 日
You must specify a folder that you can write to. Evidently you specified a system folder that you cannot write to. You MUST use a different folder for the output file since you said that it was going to have the same name as the input folder and if you don't, then your output file will blast on top of your input file and destroy it.
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!