⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 findfiledir.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function [pfnd, prel] = findfiledir(opath, spath, isafile, useff)
% findfiledir  - find a named file or directory
%
% FORMAT:       [pfnd, prel] = findfiledir(opath, spath, isafile, useff)
%
% Input fields:
%
%       opath       original path
%       spath       either string or 1xP cell array to search in
%       isafile     is it a file (true) or directory (false)
%       useff       make use of findfiles or not
%
% Output fields:
%
%       pfnd        either the found file/dir path or empty
%       prel        relative path from the matching spath

% Version:  v0.7a
% Build:    7081608
% Date:     Aug-16 2007, 8:04 AM CEST
% Author:   Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools

% argument check
if nargin < 4 || ...
   ~ischar(opath) || ...
    isempty(opath) || ...
    isempty(spath) || ...
   (~ischar(spath) && ...
    (~iscell(spath) || ...
     isempty(spath{1}))) || ...
   (~isnumeric(isafile) && ...
    ~islogical(isafile)) || ...
    isempty(isafile) || ...
   (~isnumeric(useff) && ...
    ~islogical(useff)) || ...
    isempty(useff)
    error( ...
        'BVQXtools:BadArgument', ...
        'Bad or missing argument.' ...
    );
end
isafile = isafile(1);
if isafile
    isafile = 2;
    srcfile = 'file';
else
    isafile = 7;
    srcfile = 'dir';
end
pfnd = '';
prel = '';

% shortcut if original file is found
opath = strrep(opath(:)', '\', '/');
if exist(opath, srcfile) == isafile
    pfnd = opath;
    return;
end

% check OS
if ~ispc && ...
    opath(2) == ':'
    opath(1:2) = [];
end
if ispc && ...
    opath(2) ~= ':' && ...
    opath(1) == '/'
    [opabs{1:2}] = isabsolute(opath);
    opath = opabs{2};
end

% check whether path is absolute and get particles
opc = splittocell(opath, '/');
[opf{1:3}] = fileparts(opath);
opn = numel(opc);
opm = opn - 1;

% create good alternative paths
if ~iscell(spath)
    spath = {spath(:)'};
end
spath = spath(:)';
for sc = numel(spath):-1:1
    if isempty(spath{sc}) || ...
        exist(spath{sc}(:)', 'dir') ~= 7
        spath(sc) = [];
        continue;
    end
    spath{sc} = strrep(spath{sc}(:)', '\', '/');
end

% possibly add parents of original path
apath = cell(0, 1);
for c = opm:-1:1
    apath{end+1} = gluetostring(opc(1:c), '/');
end
spath = [spath(:)', apath(:)'];

% check spath (should never run into this error...)
if isempty(spath)
    error( ...
        'BVQXtools:BadArgument', ...
        'Given spath is invalid, all non existing directories.' ...
    );
end

% get usefindfiles flag
if useff(1)
    useff = true;
    ffopts = struct;
    ffopts.oneperdir = 1;
    if isafile == 2
        ffopts.dirs = 0;
    else
        ffopts.dirs = 1;
    end
else
    useff = false;
end

% iterate over search paths
for sc = 1:numel(spath)
    
    % check if file/dir exists there
    tpath = [spath{sc} '/' opc{end}];
    if exist(tpath, srcfile) == isafile
        pfnd = tpath;
        break;
    end
    
    % check with added particles
    for pc = opm:-1:2
        tpath = [spath{sc} '/' gluetostring(opc(pc:end), '/')];
        if exist(tpath, srcfile) == isafile
            pfnd = tpath;
            prel = gluetostring(opc(pc:end - 1), '/');
            break;
        end
    end
    
    % only if findfiles is activated
    if useff
        
        % start findfiles
        ff = findfiles(spath{sc}, ['*' opf{2} '*' opf{3}], ffopts);
        if ~isempty(ff)
            pfnd = ff{1};
            prel = fileparts(pfnd);
            break;
        end
    end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -