NumeRe v1.1.4
NumeRe: Framework für Numerische Rechnungen
filecheck.hpp
Go to the documentation of this file.
1
2#ifndef FILECHECK_HPP
3#define FILECHECK_HPP
4
5bool is_dir(std::string sPathname);
6bool is_file(std::string sPathname);
7
8
9#endif //FILECHECK_HPP
bool is_file(std::string sPathname)
This function checks whether a given string is a valid file path.
Definition: filecheck.cpp:67
bool is_dir(std::string sPathname)
This function checks whether a given string is a valid directory path.
Definition: filecheck.cpp:37