Add directory to search path

3 views (last 30 days)
Erik de Boer
Erik de Boer on 31 Jan 2011
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.

Accepted Answer

Michelle Hirsch
Michelle Hirsch on 31 Jan 2011
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
  3 Comments
Michelle Hirsch
Michelle Hirsch on 31 Jan 2011
I didn't use fullfile because I didn't think of it.
Erik - you may find that fullfile makes your code a bit more readable than using [] to build up the strings for dataDirectory and dataFile.
Erik de Boer
Erik de Boer on 1 Feb 2011
Thanks, but I prefer to use as few functions as possible. Initial answer works very well.

Sign in to comment.

More Answers (1)

Jiro Doke
Jiro Doke on 31 Jan 2011
Take a look at fileparts. You can use it to traverse back on the directory tree:
prevDir = fileparts(pwd)
  2 Comments
Michelle Hirsch
Michelle Hirsch on 31 Jan 2011
You are fast, Jiro! Snuck this in while I was crafting my detailed, elegant answer! :)
Erik de Boer
Erik de Boer on 31 Jan 2011
Thanks Scott and Jiro, fileparts is exactly what I needed.

Sign in to comment.

Categories

Find more on Search Path in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!