MATLAB: GUI question about path

gui matlab

So i have a GUI, and this GUI generates me some Excel files and what i want to do is a button that will open explorer in the folder where i have those excel files created.Is this possible? i did read some answers on the forum but i did not get anything usefull :(, any clue?

Best Answer

If you are using MS Windows then you can
winopen('explorer')
Is that what you want to do though? Or do you want to use
[filename, filepath] = uigetfile('Select a file');