Using addpath with a user defined string
Mostrar comentarios más antiguos
I'm trying to use the addpath command in a script but with a user defined folder name which I want to delete at the end of the script. There are several folders in the path, all containing files of the same name (output from a program) but the folder names are different.
Using foldername=input('Enter the folder name:','s')
then
addpath C:\xxx\'foldername'
Doesn't work because addpath doesn't read the string input. Any thoughts?
1 comentario
Stephen23
el 3 de En. de 2017
str = fullfile('C:', foldername, 'mydir');
Respuesta aceptada
Más respuestas (2)
Sean de Wolski
el 16 de Jul. de 2014
addpath(['C:\xxx\' foldername])
if foldername is a variable
addpath 'C:\xxx\foldername'
if foldername is a string literal
3 comentarios
Valkmi
el 3 de En. de 2017
What if the foldername is a variable and in the middle of the path for example 'C:\foldername\xxx
Image Analyst
el 3 de En. de 2017
Editada: Image Analyst
el 3 de En. de 2017
Use sprintf() to build a string
folder = sprintf('C:/%s/blahblah', foldername)
addpath(folder)
Guillaume
el 3 de En. de 2017
Editada: Image Analyst
el 3 de En. de 2017
folder = fullfile('C:', foldername, 'blahblah');
Image Analyst
el 4 de En. de 2017
Why not be friendly to your user and just use uigetdir(), rather than be cruel and make them type it in, and possibly have to go to File Explorer to find the name if they don't know it already?
startingFolder = pwd; % Wherever you want....
folderName= uigetdir('Enter the folder name:', startingFolder)
% Add folder to search path.
addpath(folderName);
path % Print path to command window.
% Later . . . Remove folder from search path.
rmpath(folderName);
path % Print path to command window.
Categorías
Más información sobre Search Path en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!