MatrixBerryCore
+mxberry
+io
mkdir.m
Go to the documentation of this file.
1
function
[isSuccess,msgStr,messageId]=
mkdir
(dirName)
2
try
3
mxberry
.
io
.FileUtils.createDirectoryRecursively(dirName);
4
isSuccess=
true
;
5
msgStr=
''
;
6
messageId=
''
;
7
%
8
catch
meObj
9
if
nargout==0
10
rethrow(meObj)
11
else
12
isSuccess=
false
;
13
msgStr=meObj.message;
14
messageId=meObj.identifier;
15
end
16
end
mxberry::io::mkdir
function mkdir(in dirName)
MKDIR creates a directory recursively.
mxberry::io
mxberry
Generated for MatrixBerryCore by
1.8.13