make a subsubfolder in a newly made subfolder

조회 수: 27 (최근 30일)
sesilia maidelin
sesilia maidelin 2021년 7월 16일
댓글: sesilia maidelin 2021년 7월 16일
so i have this code that i use to make a new folder in the path nufolder. its name is based on the contents of dcmlist. now, i want to make a new folder inside this newly made subfolder, so eg in nufolder there's a folder 0002, i want to make another folder inside 0002 that is edn. how do i go about this? i tried using mkdir(name, edn but it didnt work, i also tried mkdir /user.../name edn but it didnt work either. Appreciate any help!
for jj = 1 : numel(dcmlist)
[filepath, name, ext]= fileparts(dcmlist(jj)); % Extract file name
mkdir(nufolderpath, name);% makes folders after the dcm names in nufolder
newdir
copyfile(fullfile(dcmpath{jj},dcmlist{jj}),fullfile( nufolderpath, name))
%[status, message, messageId]= copyfile(fullfile(dcmpath{jj},dcmlist{jj})), (fullfile(nufolderpath,name,'/'))% Copy file directly and so string comparison is needed
end

채택된 답변

Jan
Jan 2021년 7월 16일
[filepath, name, ext]= fileparts(dcmlist{jj}); % Extract file name
mkdir(fullfile(nufolderpath, name, 'edn'));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by