Spaces:
Build error
Build error
File size: 220 Bytes
e9fe176 | 1 2 3 4 5 6 7 8 9 10 11 | function [ ] = make_dir( filePath )
%MAKE_DIR Summary of this function goes here
% Detailed explanation goes here
[dirPath fileName] = fileparts(filePath);
if(isdir(dirPath)==0)
mkdir(dirPath);
end
end
|