cleanMeshDirectory.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2020-2022 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
12 
13 Description
14  Removal of polyMesh directory
15 
16 \*---------------------------------------------------------------------------*/
17 
18 {
19  // Shadows enclosing parameter (dictName)
20  const word blockMeshDictName("blockMeshDict");
22 
23  const fileName polyMeshPath
24  (
25  runTime.path()/meshInstance/regionDir/polyMesh::meshSubDir
26  );
27 
28  if (exists(polyMeshPath))
29  {
30  if (exists(polyMeshPath/blockMeshDictName))
31  {
32  Info<< "Not deleting polyMesh directory "
33  << runTime.relativePath(polyMeshPath) << nl
34  << " because it contains " << blockMeshDictName << endl;
35  }
36  else
37  {
38  Info<< "Deleting polyMesh directory "
39  << runTime.relativePath(polyMeshPath) << endl;
41  }
42  }
43 }
44 
45 
46 // ************************************************************************* //
constexpr char nl
The newline &#39;\n&#39; character (0x0a)
Definition: Ostream.H:49
engineTime & runTime
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:487
Foam::word regionName(Foam::polyMesh::defaultRegion)
bool exists(const fileName &name, const bool checkGzip=true, const bool followLink=true)
Does the name exist (as DIRECTORY or FILE) in the file system?
Definition: POSIX.C:835
bool rmDir(const fileName &directory, const bool silent=false, const bool emptyOnly=false)
Remove a directory and its contents recursively,.
Definition: POSIX.C:1433
const word & regionDir
const fileName polyMeshPath(runTime.path()/meshInstance/regionDir/polyMesh::meshSubDir)
messageStream Info
Information stream (stdout output on master, null elsewhere)