How to fprintf directory name?
34 次查看(过去 30 天)
显示 更早的评论
Hi all,
I am geting a directory name using:
Dir_Name = uigetdir;
Into Dir_Name, which is of type 'char', I get something like D:\Data\My_Projects\Project_1.
I am trying to print this Dir_Name into a text file using:
Log_File = fopen('My_Log_File.txt','w');
fprinf(Log_File,Dir_Name,'\n');
I get a warning which says: Escaped character '\D' is not valid. See 'doc sprintf' for supported special characters.
I read that document very carefuly but apparently missing the hint what to do. Is the first D the problem? The second?
If I can't print the full directory into the log file, the last directory name, in this case 'Project_1' is also a good solution for me.
Is there a way to pring the full directory? Is there a way to extract the last directory name?
Thanks,
Alon
2 个评论
madhan ravi
2018-12-6
编辑:madhan ravi
2018-12-6
why not just use sprintf()? as shown in the message they are quite handy
采纳的回答
Robert U
2018-12-6
Hi Alon Rozen,
There are some syntax issues in your example:
Dir_Name = uigetdir;
Log_File = fopen('My_Log_File.txt','a');
fprintf(Log_File,'%s\n',Dir_Name);
fclose(Log_File);
If you use 'w' as permission of fopen() new entries would overwrite old ones. Since uigetdir() does not provide multiple lines the '\n' seems to not make sense there. If you want to append new entries to file use 'a' instead.
Kind regards,
Robert
6 个评论
Jan
2018-12-6
编辑:Jan
2018-12-6
@Alon: The suggested code does work definitely:
fprintf(Log_File, '%s\n', Dir_Name);
Please try it exactly as written. The problem is, that '\' is the "escape character" in the format string. If you want to display it in a format string, you need to use two of them: '\\'. To display a path, do not include the folder name in the format string, but in the string to be displayed. See this:
folder = 'C:\Temp\'
fprintf(folder) % Stops because \T is not a valid control sequence
fprintf(strrep(folder, '\', '\\')) % Works because \ got \\
fprintf('%s\n', folder) % Best solution
Without specifying the file id as first input, fprintf writes to the command window, which is easier for controlling the output. Please read the documentation of fprintf again to understand the difference between the format string and the data to be written.
"tried adding %s to the fprintf command" - Obviously there is a mistake in this trial, so prefer to post the code instead of describing it by words.
更多回答(0 个)
另请参阅
类别
在 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!