Add directory to search path

2 ビュー (過去 30 日間)
Erik de Boer
Erik de Boer 2011 年 1 月 31 日
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.

採用された回答

Michelle Hirsch
Michelle Hirsch 2011 年 1 月 31 日
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 件のコメント
Michelle Hirsch
Michelle Hirsch 2011 年 1 月 31 日
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 2011 年 2 月 1 日
Thanks, but I prefer to use as few functions as possible. Initial answer works very well.

サインインしてコメントする。

その他の回答 (1 件)

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

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by