blob: 767c8b34759ddaa742bf12508310bbfac8d9ad47 (
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
33
34
35
36
37
38
39
40
|
/**
* @file lldir_linux.h
* @brief Definition of directory utilities class for linux
*
* Copyright (c) 2000-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLDIR_LINUX_H
#define LL_LLDIR_LINUX_H
#include "lldir.h"
#include <dirent.h>
#include <errno.h>
class LLDir_Linux : public LLDir
{
public:
LLDir_Linux();
virtual ~LLDir_Linux();
virtual void initAppDirs(const std::string &app_name);
public:
virtual std::string getCurPath();
virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask);
virtual BOOL getNextFileInDir(const std::string &dirname, const std::string &mask, std::string &fname, BOOL wrap);
virtual void getRandomFileInDir(const std::string &dirname, const std::string &mask, std::string &fname);
/*virtual*/ BOOL fileExists(const std::string &filename);
private:
DIR *mDirp;
int mCurrentDirIndex;
int mCurrentDirCount;
std::string mCurrentDir;
};
#endif // LL_LLDIR_LINUX_H
|