hi all, I am trying to open a file with .001 extension , fopen gives error. can you please help?
1 次查看(过去 30 天)
显示 更早的评论
I am using d=dir(*.001), and can see file name (abcd.001) from name=d.name but fid1=fopen(name) returns negative value.
4 个评论
James Tursa
2017-5-24
编辑:James Tursa
2017-5-24
I assume you meant to type d=dir('*.001') with the single quotes? Works for me PCWIN R2011a:
>> d=dir('*.001')
d =
name: 'abcd.001'
date: '24-May-2017 09:00:35'
bytes: 16
isdir: 0
datenum: 7.3684e+005
>> d.name
ans =
abcd.001
>> fid = fopen(d.name)
fid =
3
回答(2 个)
Steven Lord
2017-5-24
Call fopen with two outputs. If the first output is -1, display the second output to see why the file open operation did not succeed.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!