MATLAB: Is there a way to browse parent folders of the current working folder

current folderfolder navigationMATLABworking folder

I'm currently working on a project where I've separated the code into two folders which handle two conceptually related but functionally separate sets of tasks. If I sit at a parent folder of the two and add their folders to the path, I can easily view, edit, and run both sets of code at the same time, which is excellent for my workflow.
However, I'm running into issues related to running test cases on my code. I've been navigating to the folder where I want to dump the output and running a script, which works reasonably well and allows me to easily track the effects of changes to my code without needing to rewrite the test set. However, when I'm doing this, I'm effectively blind to all of my code, since all the browser shows me is the contents of the output folder.
Obviously, I can just keep the code open, or I can use the Open interface to navigate to the file that I want. Ideally, though, I'd like to flag a selected folder as the current working folder without collapsing the Current Folder browser onto it, letting me keep my setup there intact regardless of what I'm doing. Is there a way to do this?

Best Answer

So you have folders b and c, and folder "a" is the parent of them. The code in b or c puts output into a different folder "d". If you set the "Current folder" panel to view folder d, then you can't see your m-files in folders b or c, and you want to. I think that captures what you've said.
So, you can either bring up another program, such as Windows Explorer, or you can design your own GUI where you have listboxes where each listbox contains the files and monitors a different folder.