herwig is hosted by Hepforge, IPPP Durham
Herwig 7.3.0
Filesystem.h
1// -*- C++ -*-
2//
3// Filesystem.h is a part of Herwig - A multi-purpose Monte Carlo event generator
4// Copyright (C) 2017-2019 The Herwig Collaboration
5//
6// Herwig is licenced under version 3 of the GPL, see COPYING for details.
7// Please respect the MCnet academic guidelines, see GUIDELINES for details.
8//
9
10#include <string>
11
12namespace Herwig {
13
14namespace filesystem {
15
17 bool exists(const std::string & path);
18
20 bool is_directory(const std::string & path);
21
23 bool create_directory(std::string path);
24
25}
26
27}
-*- C++ -*-