Retain current directory

1 次查看(过去 30 天)
Jason
Jason 2011-8-10
How can I set the current directory after I have initially selected it. I am performing some tasks on tiff images using a GUI. I initially set the directory by using an exdit box and use:
startpname=get(handles.editFolder,'String');
After this first selection, I then want to start in this directory for all other times.
Thanks Jason

回答(1 个)

Arturo Moncada-Torres
I recommend you to check the cd function documentation. On a quick thought, I suppose it must be something like:
startpname = get(handles.editFolder, 'String');
cd(startpname);

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by