- https://www.mathworks.com/help/matlab/ref/winopen.html
- https://www.mathworks.com/help/matlab/ref/system.html
immediate refresh function for cd?
5 次查看(过去 30 天)
显示 更早的评论
When I run this code in a script:
cd(my_folder_name)
% what goes here?
pause(15)
the current folder window doesn't update until after the script finishes. Is there a command that could go between the cd and the pause so that the current folder window would show the new folder immediately, without waiting for the script to finish?
Thanks,
0 个评论
回答(1 个)
Paras Gupta
2023-9-7
Hi Jeff,
I understand that you want to update the current folder window in MATLAB as soon as the cd function is executed in the script above.
Even though the cd function immediately changes the current directory, the current folder window is updated only after the script finishes executing. There is no direct command within MATLAB to achieve this functionality as the current folder window is managed by the operating system's file explorer.
However, you can try a workaround using the winopen function in MATLAB for Windows operating systems. This function opens a specified folder in a new file explorer window. Here's an example of how you can modify your script:
cd('my_folder_name')
winopen(pwd)
pause(15)
You can also use the system command in MATLAB to execute platform-specific commands for different operating systems. Here's an example that should work across different operating systems:
cd('my_folder_name')
if ispc
system('explorer .');
elseif isunix
system('xdg-open .');
elseif ismac
system('open .');
end
pause(15)
You can refer to the following documents for more information on the functions above:
Hope it helps.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!