-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdatePath.m
89 lines (72 loc) · 3.14 KB
/
updatePath.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
function [] = updatePath(directory,excludeTopDirectory,directoriesToExclude)
if (nargin < 1) || isempty(directory)
directory = pwd();
end
if (nargin < 2) || isempty(excludeTopDirectory)
excludeTopDirectory = false;
end
if (nargin < 3) || isempty(directoriesToExclude)
directoriesToExclude = {'.git','Sandbox','private'};
else
directoriesToExclude = [directoriesToExclude(:);{'.git';'Sandbox';'private'}]';
end
% Setup exclusions
directoriesToExclude = directoriesToExclude(:)' ;
% Generate the full toolbox path
path = genpath(directory);
% Escape all metacharacters (since these are used in expressions)
directoriesToExclude = escapeRegExMetacharacters(directoriesToExclude);
directory = escapeRegExMetacharacters(directory);
% Create regular expression for filtering excluded directories
exclusionRegEx= strcat(directory,'\\' ,... % Top directory
'(',stringJoin(directoriesToExclude,'|'),')',... % Exclusion grouping
'.*?;'); % Lazy wildcard grab
% Remove all excluded directories
pathToAdd = regexprep(path,exclusionRegEx,'');
% Remove top level directory if requested
if excludeTopDirectory
pathToAdd = regexprep(pathToAdd,[directory,';'],'');
end
% Add all included folders to the main search path
addpath(pathToAdd);
saveOutcome = savepath();
if (saveOutcome == 0)
fprintf(strrep(strrep(pathToAdd,'\','\\'),';',';\n'));
fprintf(['\n*** The above folders were successfully added and saved ',...
'to the MATLAB search path.***\n']);
else
fprintf(['\n*** The paths were UNSUCCESSFULLY saved ',...
'to the MATLAB search path.\n***']);
end
end
function escapedString = escapeRegExMetacharacters(string)
escapedString = string ;
escape = @(c,Str) strrep(Str,c,['\',c]) ;
escapedString = escape('\', escapedString);
escapedString = escape('^', escapedString);
escapedString = escape('$', escapedString);
escapedString = escape('.', escapedString);
escapedString = escape('|', escapedString);
escapedString = escape('?', escapedString);
escapedString = escape('*', escapedString);
escapedString = escape('+', escapedString);
escapedString = escape('-', escapedString);
escapedString = escape(':', escapedString);
escapedString = escape('(', escapedString);
escapedString = escape(')', escapedString);
escapedString = escape('[', escapedString);
escapedString = escape(']', escapedString);
escapedString = escape('{', escapedString);
escapedString = escape('}', escapedString);
end
function joined = stringJoin(string,joiner)
if exist('strjoin','builtin')
joined = strjoin(string,joiner);
else
joined = [...
cellfun(@(c) [c,'|'],string(1:end-1),'UniformOutput',false),...
string(end)...
];
joined = strcat(joined{:});
end
end