Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:23:58

0001 // -*- C++ -*-
0002 //
0003 // Filesystem.h is a part of Herwig - A multi-purpose Monte Carlo event generator
0004 // Copyright (C) 2017-2019 The Herwig Collaboration
0005 //
0006 // Herwig is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 
0010 #include <string>
0011 
0012 namespace Herwig {
0013 
0014 namespace filesystem {
0015 
0016     /// Check if file/dir location exists
0017     bool exists(const std::string & path);
0018 
0019     /// Check if location is a directory
0020     bool is_directory(const std::string & path);
0021 
0022     /// Make a directory
0023     bool create_directory(std::string path);
0024 
0025 }
0026 
0027 }