import a certain text file .txt from a specific folder

I want to import a certain text file .txt from a specific folder.
In case the .txt file is saved in the current folder I open it this way:
import_txt = importdata('name of file.txt');
In my case I proceeded in this way but it is not the correct solution:
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
import_txt = importdata('name of file.txt', folder);

 채택된 답변

Jean-Baptiste Lanfrey
Jean-Baptiste Lanfrey 2022년 11월 23일
You can try the fullfile function.
Something like this should work:
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
filename = fullfile(folder, 'name of file.txt');
import_txt = importdata(filename);

추가 답변 (1개)

Mathieu NOE
Mathieu NOE 2022년 11월 23일
hello again
for numerical arrays use readmatrix instead of importdata
folder = 'C:\Users\Alberto\....'; % folder where the .txt file is located.
import_txt = importdata(fullfile(folder, 'file.txt')); % or readmatrix

카테고리

도움말 센터File Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

제품

릴리스

R2021b

질문:

2022년 11월 23일

답변:

2022년 11월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by