How do we automatically read current folder name in matlab script to read all data?
151 次查看(过去 30 天)
显示 更早的评论
I have attached below a part of my matlab script. The script is to read current sub-folders directory. As shown in the picture below "r20_" means the first 3 letter of current directory.
%get all subfolders of the main folders [stat,strf]=fileattrib; SubList = dir(fullfile(strf.Name, 'r20_*'));
Every time I change the current directory I need to edit the first 3 letter manually i.e. r20. I am thinking is there any way to read automatically the first three letter of current directory. Please note sublist in the part of code is used many times in rest of the code. So, while reading the three letter of current directory, sublist shouldn't affect for rest of the code. I appreciate your opinion. Thank you.
0 个评论
采纳的回答
Guillaume
2017-3-17
编辑:Guillaume
2017-3-17
pwd will give you the name of the current directory. It's then trivial to extract the 1st three letters:
currentdirectory = pwd;
currentdirectory(1:3)
3 个评论
Guillaume
2017-3-17
currentdirectory = pwd;
SubList = dir(fullfile(strf.Name, [currentdirectory(1:3), '_*']));
Zhangxi Feng
2018-1-19
Umm.. pwd gives the full path. So pwd(1:3) will give the drive letter, such as F:\
更多回答(1 个)
Dejia Kong
2019-7-8
I think
[~,name,~]=fileparts(pwd);
gives the current name and you can deal with your problem with this.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!