diff options
Diffstat (limited to 'shared/checkExist.h')
-rw-r--r-- | shared/checkExist.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/shared/checkExist.h b/shared/checkExist.h new file mode 100644 index 00000000..bae5580c --- /dev/null +++ b/shared/checkExist.h @@ -0,0 +1,19 @@ +#ifndef CHECKEXIST_H_INCLUDED +#define CHECKEXIST_H_INCLUDED + +#include "zstring.h" + +namespace Utility +{ +enum ResultExist +{ + EXISTING_TRUE, + EXISTING_FALSE, + EXISTING_TIMEOUT +}; + +ResultExist fileExists(const Zstring& filename, size_t timeout); //timeout in ms +ResultExist dirExists( const Zstring& dirname, size_t timeout); //timeout in ms +} + +#endif // CHECKEXIST_H_INCLUDED |