Make constant directories
This commit is contained in:
parent
80b603ad1a
commit
bae18c4d32
1 changed files with 14 additions and 11 deletions
|
@ -83,13 +83,16 @@ int main(int argc, char *argv[])
|
|||
file += ss.str();
|
||||
Info << "Creating " << file << endl;
|
||||
|
||||
//- create a directory for processor data
|
||||
// create a directory for processor data
|
||||
mkDir(runTime.path()/file);
|
||||
|
||||
//- copy the contents of the const directory into processor*
|
||||
// generate constant directories
|
||||
mkDir(runTime.path()/"constant");
|
||||
|
||||
// copy the contents of the const directory into processor*
|
||||
cp(runTime.path()/"constant", runTime.path()/file);
|
||||
|
||||
//- generate 0 directories for
|
||||
// generate 0 directories
|
||||
mkDir(runTime.path()/file/"0");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue