summaryrefslogtreecommitdiff
path: root/shared/checkExist.h
blob: bae5580c863ae6b4aa72ea89e70c2640b784ed26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
bgstack15