view m-toolbox/classes/+utils/@helper/getExtensionDirs.m @ 22:b11e88004fca
database-connection-manager
Update collection.fromRepository
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − function varargout = getExtensionDirs(varargin)
+ −
+ − % Get a list of user extension directories
+ − prefs = getappdata(0, 'LTPDApreferences');
+ − searchPaths = prefs.getExtensionsPrefs.getSearchPaths;
+ − paths = {};
+ − for kk=0:searchPaths.size-1
+ − paths = [paths {char(searchPaths.get(kk))}];
+ − end
+ −
+ − varargout{1} = paths;
+ −
+ − end