Execute several m-files one after the other
Mostrar comentarios más antiguos
For an import routine I would like to execute different m-files one after the other. Here at, the file source is then asked:
[path] = uigetdir('C:\Users\gxxxx\Desktop\','Please select folder ...');
if ~ischar(path)
error('Failure!')
return;
end
How can I, on the one hand, control that the various m-files are opened and executed one after the other, and how can I bypass the query shown above when specifying the path and always use the path of the m-file as the source directory?
2 comentarios
"...I would like to execute different m-files..."
Are they scripts or functions?
Do they need to be run in the current directory?
Are their names unique, or do other folder/s contain scripts/functions with the same name/s?
Mepe
el 31 de Ag. de 2020
Respuestas (1)
Walter Roberson
el 31 de Ag. de 2020
0 votos
Provide your own uigetdir.m that has the behavior you want. Including possibly having set up ahead of time which directories you want to read from, and having your uigetdir() supply the next directory in sequence each time it is called.
Categorías
Más información sobre File Operations 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!