2009-05-30 16:58:34 +00:00
|
|
|
#ifndef _LISTFILES_H_
|
|
|
|
#define _LISTFILES_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2009-06-04 22:13:39 +00:00
|
|
|
bool findfile(const char * filename, const char * path);
|
2009-06-06 17:26:52 +00:00
|
|
|
char * GetFileName(int i);
|
|
|
|
int GetAllDirFiles(char * filespath);
|
2009-06-16 08:28:50 +00:00
|
|
|
bool subfoldercreate(char * fullpath);
|
2009-06-23 18:59:28 +00:00
|
|
|
bool checkfile(char * path);
|
2009-05-30 16:58:34 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|