blob: 606c662a1dbefb6a3ac344841383ff8d27f75374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function SCI2CCreateDir(OutDir);
// function SCI2CCreateDir(OutDir);
// -----------------------------------------------------------------
// Create the dir OutDir.
//
// Input data:
// OutDir:
//
// Output data:
// ---
//
// Status:
// 25-Jun-2007 -- Nutricato Raffaele: Author.
// -----------------------------------------------------------------
status_dir = mkdir(OutDir) ;
if (status_dir == 0)
SCI2Cerror('Cannot create: '+OutDir);
end
endfunction
|