How can I introduce a ' \ ' after ' sprintf '
古いコメントを表示
Hello
I have a problem introducing a slash after 'sprintf' function
My code is this:
folderName1='Image_%d_TrueColor_Segmentation';
mkdir('C:\Software\AUTOMATED RESULTS\Segmented_Images',sprintf(folderName1,Num_Exe));
ab=['C:\Software\Segmented_Images\',sprintf(folderName1,Num_Exe)];
My problem occurs as I am trying to introduce a '\' after the path of 'ab' variable. I tried to intriduce it in the 'folderName1' variable at the end but did not work.
Any ideas ???
Thank you in advance
採用された回答
その他の回答 (2 件)
Image Analyst
2012 年 4 月 29 日
3 投票
Dimitris, for simplicity, just don't use backslashes. Did you know that forward slashes work just fine for Windows paths? But anyway, the solution is to use fullfile() like Jan said - it takes care of all that for you.
1 件のコメント
Adri
2020 年 6 月 29 日
I logged in just to like and comment this answer. Thank you very much!
Dimitris M
2012 年 4 月 29 日
0 投票
2 件のコメント
Jan
2012 年 4 月 29 日
You are welcome. When reading the documentation does help, it helps faster than the forum. In addition the documentation of Matlab has a high quality. Therefore I suggest to read it whenever I can.
Daniel
2013 年 11 月 13 日
On the other hand, forum answers are faster than the doc for the hundreds who will come after :)
カテゴリ
ヘルプ センター および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!