How can I determine if a directory is on the MATLAB path programmatically?

I want to be able to programmatically determine if an arbitrary directory is on the MATLAB path. I want to do this because the publish command will complain if you give it a file name that is not on the path. Is there a clever way to determine if a directory is on the MATLAB path without having to parse the path myself?

 Akzeptierte Antwort

Jan
Jan am 10 Sep. 2013
Bearbeitet: Jan am 20 Jul. 2021
pathCell = regexp(path, pathsep, 'split');
if ispc % Windows is not case-sensitive
onPath = any(strcmpi(Folder, pathCell));
else
onPath = any(strcmp(Folder, pathCell));
end
[EDITED] A faster version - beside the faster strsplit since Matlab R2013a:
s = pathsep;
pathStr = [s, path, s];
onPath = contains(pathStr, [s, Folder, s], 'IgnoreCase', ispc);

6 Kommentare

This is the answer that works for me. Specifically my issue is that the publish function, when called programmatically, fails if the input filename is not on the MATLAB path, regardless of whether or not the full file specification is given. I prefer a method like this, rather than a work-around. This occurs in publish because it uses which.
@Robert, I still don't see why just adding the directory to the path wouldn't be the best option here...
@Sean, In many cases that would probably be fine, but in my specific instance the file that I am publishing is an m file that is in a class subdirectory, and I don't think that type of subdirectory should actually be on the path. (The directory within which a class directory resides should be on the path, but not the class directory itself).
Then use genpath() to get subfolders added to the path also:
addpath(genpath(theFolder));
This is correct @Robert. So why not add the parent path blindly? This is what you're checking anyway right?
For slightly more speed, you can just use strsplit(path,pathsep). Shouldnt make a big difference, but if you have thousands of paths, maybe a fraction of a second...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (5)

exist('dirname','dir')
Returns 7 if the dir is on your path, 0 if not.

3 Kommentare

Matt J
Matt J am 9 Sep. 2013
Bearbeitet: Matt J am 9 Sep. 2013
This assumes that dirname is not the full system path name. If it is a full path, 7 will always be returned, even if that directory is not on the MATLAB path.
Not sure this is correct. It will return 7 if the directory exists and 0 if the directory does not..
I do not think it has to do with the directory being on the path or not.
Ah yes you're right. I thought it check if it's on the searchpath, but it doesn't.

Melden Sie sich an, um zu kommentieren.

Sean de Wolski
Sean de Wolski am 9 Sep. 2013
Bearbeitet: Sean de Wolski am 9 Sep. 2013
Parsing the path isn't so bad!
This seems like a simple check:
if ispc
% Windows is not case-sensitive
onPath = ~isempty(strfind(lower(path),lower('H:\Documents\MATLAB;')))
else
onPath = ~isempty(strfind(path,'H:\Documents\MATLAB;'))
end
Of course for your use-case it's not too much work to just add the folder in question to the path regardless, addpath takes care of redundancy:
addpath H:\documents\MATLAB
addpath H:\documents\MATLAB
addpath H:\documents\MATLAB
addpath H:\documents\MATLAB
addpath H:\documents\MATLAB
clc
path

2 Kommentare

Instead of relying on the semicolon as a separator, using the command pathsep is more flexible because it considers the OS-specific separator automatically:
onPath = ~isempty(strfind(path, ['H:\Documents\MATLAB', pathsep]))

Melden Sie sich an, um zu kommentieren.

Brett
Brett am 14 Jun. 2016
Bearbeitet: Brett am 14 Jun. 2016
This made the most sense to me...
ismember(some_path, strsplit(path, pathsep))
These days I'm more familiar with Python than Matlab, so I'm sorta doing the Matlab equivalent of something like "file in pathstr.split(';')". I assume that checking membership is cheaper than searching... this logic may not be true for Matlab cell arrays, I'm not sure. My next assumption was that strsplit should always be preferred if your pattern is a known constant expression (vs. using regex for simple splitting which is an expensive operation). This avoids all the pitfalls of string matching, like false positives of "C:\some_path" being accidentally found inside "C:\some_path\sub_path\subsub\".
isdir('your_folder_name')

1 Kommentar

isdir() or the newer isfolder() returns true if the input is a directory whether it's on-path or not (for full paths).

Melden Sie sich an, um zu kommentieren.

Image Analyst
Image Analyst am 9 Sep. 2013
Bearbeitet: Image Analyst am 9 Sep. 2013
Why can't you just give it the full filename? Use
fullFileName = fullfile(folder, baseFilename);
I mean, you already have the folder because you were going to use that to try to figure out if it was on the search path. But instead of doing that, just construct the full filename like I showed you above.
Alternatively, just try to open the file and check if the file ID indicates it didn't find it.
fid = fopen(baseFileName); % Don't use folder or full file name.
if fid == -1 .... etc.

Kategorien

Produkte

Tags

Gefragt:

am 9 Sep. 2013

Bearbeitet:

Jan
am 20 Jul. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by