Error using cd. Name is nonexistent or not a directory.

24 次查看(过去 30 天)
Hi. I get this error when the code starts the second time through the for loop. I want it to load the same file from each subfolder in the main folder.
pathname = uigetdir('E:\PairStim\ ', 'select dir');
cd(pathname)
f = dir(pathname);
f.isdir % to get 1 for folder and 0 for file
for i = 1: length(f)
cd(f(i).name)
preemg = dir('*Pre*DelsysAVG*');
filename = preemg.name;
preemg = load(filename);
end
Any ideas how to get the folder to change with the loop :)

采纳的回答

Walter Roberson
Walter Roberson 2013-9-13
When you use dir(), the .name field returned is always only the last component, the name within its local directory, and does not include the directories before that. You should use fullfile() and add the directory on to the name.
cd( fullfile( pathname, f(i).name ) )

更多回答(1 个)

Image Analyst
Image Analyst 2013-9-13
Use genpath().
  1 个评论
Image Analyst
Image Analyst 2013-9-14
For what it's worth, here's code to traverse into each subfolder off a main folder:
% Start with a folder and get a list of all subfolders.
% Finds and prints names of all PNG and TIF images in
% that folder and all of its subfolders.
clc; % Clear the command window.
workspace; % Make sure the workspace panel is showing.
format longg;
format compact;
fontSize = 20;
% Define a starting folder.
start_path = fullfile(matlabroot, '\toolbox\images\imdemos');
% Ask user to confirm or change.
topLevelFolder = uigetdir(start_path);
if topLevelFolder == 0
return;
end
% Get list of all subfolders.
allSubFolders = genpath(topLevelFolder);
% Parse into a cell array.
remain = allSubFolders;
listOfFolderNames = {};
while true
[singleSubFolder, remain] = strtok(remain, ';');
if isempty(singleSubFolder)
break;
end
listOfFolderNames = [listOfFolderNames singleSubFolder];
end
numberOfFolders = length(listOfFolderNames)
% Process all image files in those folders.
for k = 1 : numberOfFolders
% Get this folder and print it out.
thisFolder = listOfFolderNames{k};
fprintf('Processing folder %s\n', thisFolder);
% Get PNG files.
filePattern = sprintf('%s/*.png', thisFolder);
baseFileNames = dir(filePattern);
% Add on TIF files.
filePattern = sprintf('%s/*.tif', thisFolder);
baseFileNames = [baseFileNames; dir(filePattern)];
numberOfImageFiles = length(baseFileNames);
% Now we have a list of all files in this folder.
if numberOfImageFiles >= 1
% Go through all those image files.
for f = 1 : numberOfImageFiles
fullFileName = fullfile(thisFolder, baseFileNames(f).name);
fprintf(' Processing image file %s\n', fullFileName);
end
else
fprintf(' Folder %s has no image files in it.\n', thisFolder);
end
end

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by