mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-04-05 17:35:55 +01:00
Plot: use of new mkdir function from LatCore
This commit is contained in:
parent
2b0d75c012
commit
ccce7b11c0
@ -534,12 +534,9 @@ void Plot::save(string dirName)
|
||||
commandBack = plotCommand_;
|
||||
|
||||
// generate directory
|
||||
if (access(dirName.c_str(), R_OK|W_OK|X_OK))
|
||||
if (mkdir(dirName))
|
||||
{
|
||||
if (mkdir(dirName.c_str(), mode755))
|
||||
{
|
||||
LATAN_ERROR(Io, "impossible to create directory '" + dirName + "'");
|
||||
}
|
||||
LATAN_ERROR(Io, "impossible to create directory '" + dirName + "'");
|
||||
}
|
||||
|
||||
// save PDF
|
||||
|
Loading…
x
Reference in New Issue
Block a user