필터 지우기
필터 지우기

unable to open a text file from different loacations

조회 수: 2 (최근 30일)
shanmukh
shanmukh 2013년 2월 20일
i am using the following code to get the .txt file from any location
a1 = uigetfile('../Data/*.txt');
fid = fopen(a1,'r+');
i am able to select .txt files which are present only in matlab working folder. if i place the same file on desktop and try to select it i get an error as shown below
Error using textscan
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in text_fin1 (line 7)
c = textscan(fid,'%d64%f64%s%s%d64%d64%d64%d64%d64','delimiter',
';','HeaderLines',256);
please let me know why i have this error, how to remove it

답변 (1개)

Jan
Jan 2013년 2월 20일
편집: Jan 2013년 2월 20일
uigetfile replies the path and the file name. You have to use both to address your file:
[filename, pathname] = uigetfile('*.txt');
fid = fopen(fullfile(pathname, filename), 'r+');
Otherwise Matlab searches the file in the current folder. For fopen(name, 'r') Matlab would even search in the complete Matlab path, which might lead to very unexpected effects. But fortunately the write-permissions triggered by 'r+' let fopen be less smart.
  댓글 수: 1
shanmukh
shanmukh 2013년 2월 20일
i used the following code
a1 = uigetfile('*.txt');
fid = fopen(fullfile(a1), 'r+');
no use it gives me the same error

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

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by