MATLAB: Add directory to search path

search pathworking directory

Hello,
Some of my scripts use data from outside the working directory. I specify the data file by entering the entire path.
This works fine, however I'm forced to switch a lot between workstations. Those workstations have different names for the hard drive, which means I have to manually change all path specifiers every time I change PC's.
Since my data is always in the folder that is one down on the directory tree (i.e. the data is in the same folder as the folders containing my scrips are), I hope there is a way to make my scripts station independent.
Thanks for any tips.

Best Answer

A couple of techniques come to mind, of various complexity and robustness.
Easy, but fragile
Build a partial path specifier. You just start with the name of the directory where the file lives, e.g.
filename = 'Data\myfile.txt';
This has a robustness issue, though. If the user runs your script from anywhere other than where the script lives, this won't work. It's even more fragile in interactive applications, since any time the user changes directories it will break.
A little harder, but more robust
Figure out once where the data directory is, then use this location every time you need to access a file. Assuming your scripts are just run straight through, the following should work:
% Get the directory of this script
p = which(mfilename);
parentDirectory = fileparts(p);
% Build a complete path to data directory. filesep returns the
% appropriate file separator on your platform
dataDirectory = [parentDirectory filesep 'My Data Folder' filesep];
% Reference a specific file by appending the name after the directory name
dataFile = [dataDirectory 'MyDataFile.txt']
HTH, - scott