blob: 458d0885dfeb7ff94fc8162bab1436cfb43b9643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*****
* locate.h
* Tom Prince 2005/03/24
*
* Locate files in search path.
*****/
#ifndef LOCATE_H
#define LOCATE_H
#include "common.h"
#include "settings.h"
namespace settings {
typedef mem::list<string> file_list_t;
extern file_list_t searchPath;
// Find the appropriate file, first looking in the local directory, then the
// directory given in settings, and finally the global system directory.
string locateFile(string id, bool full=false, string suffix=settings::suffix);
namespace fs {
// Check to see if a file of given name exists.
bool exists(string filename);
}
} // namespace settings
#endif // LOCATE_H
|