gusucode.com > private工具箱matlab源码程序 > private/create_jit_project_dir_path_just_in_time.m

    function create_jit_project_dir_path_just_in_time()

[projectDirPath,projectDirArray] = sfprivate('get_jit_proj');

if(~isdir(projectDirPath))
    % we try to create project dir just_in_time
    [~, success, errorCreateMsg] = sfprivate('create_directory_path',projectDirArray{:});
    if(~success)
        error(errorCreateMsg);
    end
end