Prolemn with close Matlab folder
5 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I have a problemn like the picture. When I use Matlab program, I try to rename the folder containing *.mat files. Although, all files had closed, I can not rename it. Can you help me? Thanks a lot!
Thu Nguyen
3 个评论
Walter Roberson
2019-11-5
You cannot typically cannot rename a folder that is your current directory.
采纳的回答
galaxy
2019-11-6
编辑:galaxy
2019-11-6
You need to check movefile function which you used is OK or NG
- Original, after cd command.
2. after use movefile
3. after use rmdir
Because you jump to testpatient folder, so you can use rmdir('Opt_data') only.
If you still problem, if you can, please send me the source code, I want to see it
11 个评论
galaxy
2019-11-6
编辑:galaxy
2019-11-6
Currently, I am working in Japan.
When you change to 2015a, only 1 problem will occur. From 2013b, matlab did not support matlabpool function. So you need to comment (line 49 - 51 of start_optimization.m) or change as you want.
=> I commented, and your script ran perfectly.
更多回答(5 个)
thu nguyen
2019-11-5
2 个评论
galaxy
2019-11-5
In Matlab, you can modify any folder's name if this folder is contained in Matlab path.
In this case, maybe you rename after you used files or addpath to this folder. So you can not.
You can check Matlab path by
>> path
Besides, nice to meet you. I am Vietnamese too.
It you have any problems about Matlab, you can ask me
Image Analyst
2019-11-5
Did you have Windows File Explorer open viewing that folder? That might prevent renaming.
thu nguyen
2019-11-5
1 个评论
galaxy
2019-11-5
I can’t believe that happened.
Please close all application, folder in your machine and tell me procedure you use MATLAB.
ex:
- open MATLAB
- rename of New Folder to xxx
- error occur
thu nguyen
2019-11-5
4 个评论
Walter Roberson
2019-11-6
Whenever you add functions to the top of the path, they take priority over any built-in functions by the same name. That can lead to problems for a variety of programs, not just when you are using that particular software. If you add to the bottom of the path, then any function names that are duplicated would only be a problem running that particular software.
thu nguyen
2019-11-5
7 个评论
galaxy
2019-11-6
You received this error because folder not empty.
You need to use rmdir after you use movefile, when Opt_data was empty,
thu nguyen
2019-11-6
2 个评论
galaxy
2019-11-6
You use movefile wrong.
You move Opt_data folder to in Opt_data_0 folder.
You need move all files in Opt_data folder only.
You can use as below
cd ('D:\Thu_30-8-2015\Phd\Matlab_program\code-checked\code_demo\Patients\testpatient');
movefile('Opt_data\*','Opt_data_0');
rmdir('Opt_data');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Search Path 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!