필터 지우기
필터 지우기

hi all, I am trying to open a file with .001 extension , fopen gives error. can you please help?

조회 수: 4 (최근 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
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개)

Jan
Jan 2017년 5월 24일
fopen replies -1, if the name is a folder.
  댓글 수: 2
perveen ali
perveen ali 2017년 5월 24일
i think there was some issue with folder. I copied file to the same folder where my code is and it works fine now. thanks.
perveen ali
perveen ali 2017년 5월 24일
but this is not the solution for me. how can I open a subfolder and read *.001 file.

댓글을 달려면 로그인하십시오.


Steven Lord
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.

카테고리

Help CenterFile Exchange에서 Files and Folders에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by