Why fopen does not accept the path when it is assigned to a variable.

1 回表示 (過去 30 日間)
Bilge
Bilge 2013 年 6 月 7 日
filename=['tests/testbkc/result-1/abc.txt']; fid=fopen('filename','w')
Here fid returns bigger than 3 but it does not create any file.
If I wrote the path directly into fopen then everything is okey. But I need to use variable.
what should be the type of filename? Isnt it char?
Does anybody have an idea? Thanks

採用された回答

Ahmed
Ahmed 2013 年 6 月 7 日
omit the the '' to get the content of the variable filename.
fid=fopen(filename,'w')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by