Can one define a "directory" as a "variable"?

2 Ansichten (letzte 30 Tage)
alpedhuez
alpedhuez am 23 Nov. 2020
Kommentiert: alpedhuez am 23 Nov. 2020
Suppose I want to use readtable to read a file. I understand the format
readtable('C:\myFolder\myFile.xlsx')
readtable('C:\myFolder\myFile2.xlsx')
But in my case such directory name is very long and it is cumbersome that I need to specify that long directory name each time. Is it possible to define a directory name as a variable and simplify the process?

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 23 Nov. 2020
directory='c:\myfolder';
filename='myfile.xlsx';
readtable(fullfile(directory,filename));

Weitere Antworten (0)

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by