Make constant directories

This commit is contained in:
Hrvoje Jasak 2014-08-19 20:28:35 +01:00 committed by Dominik Christ
parent 80b603ad1a
commit bae18c4d32

View file

@ -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");
}