mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
54 lines
803 B
C
54 lines
803 B
C
|
#ifndef FOLDERITERATOR_H
|
||
|
#define FOLDERITERATOR_H
|
||
|
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <cstdio>
|
||
|
|
||
|
#ifdef WINDOWS_SYS
|
||
|
#include "util/rswin.h"
|
||
|
#include <windows.h>
|
||
|
#include <tchar.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#else
|
||
|
#include <dirent.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
namespace librs { namespace util {
|
||
|
|
||
|
|
||
|
class FolderIterator
|
||
|
{
|
||
|
public:
|
||
|
FolderIterator(const std::string& folderName);
|
||
|
~FolderIterator();
|
||
|
|
||
|
bool isValid() const { return validity; }
|
||
|
|
||
|
bool readdir();
|
||
|
|
||
|
bool d_name(std::string& dest);
|
||
|
|
||
|
bool closedir();
|
||
|
|
||
|
private:
|
||
|
bool validity;
|
||
|
|
||
|
#ifdef WINDOWS_SYS
|
||
|
HANDLE handle;
|
||
|
bool isFirstCall;
|
||
|
_WIN32_FIND_DATAW fileInfo;
|
||
|
#else
|
||
|
DIR* handle;
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
} } // librs::util
|
||
|
|
||
|
|
||
|
#endif // FOLDERITERATOR_H
|