Why fopen does not accept the path when it is assigned to a variable.
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Ahmed
2013년 6월 7일
omit the the '' to get the content of the variable filename.
fid=fopen(filename,'w')
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!