| 44 | #include "../Global/StrUtils.h" |
| 45 | |
| 46 | NATRON_NAMESPACE_ENTER |
| 47 | NATRON_PYTHON_NAMESPACE_ENTER |
| 48 | |
| 49 | static bool fileExists(const std::string& path) |
| 50 | { |
| 51 | FStreamsSupport::ifstream ifile; |
| 52 | FStreamsSupport::open(&ifile, path); |
| 53 | return ifile.good(); |
| 54 | } |
| 55 | |
| 56 | static bool dirExists(const std::string& path) |
| 57 | { |
no test coverage detected