123
This commit is contained in:
57
CrySystem/LuaDebugger/_TinyFileEnum.h
Normal file
57
CrySystem/LuaDebugger/_TinyFileEnum.h
Normal file
@@ -0,0 +1,57 @@
|
||||
#ifndef __TINY_FILE_ENUM_H__
|
||||
#define __TINY_FILE_ENUM_H__
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <io.h>
|
||||
|
||||
class _TinyFileEnum {
|
||||
public:
|
||||
_TinyFileEnum() { m_hEnumFile = -1L; };
|
||||
|
||||
virtual ~_TinyFileEnum() {
|
||||
if (m_hEnumFile != -1L) {
|
||||
_findclose(m_hEnumFile);
|
||||
m_hEnumFile = -1L;
|
||||
}
|
||||
};
|
||||
|
||||
bool GetNextFile(struct __finddata64_t *pFile) {
|
||||
if (_findnext64(m_hEnumFile, pFile) == -1L) {
|
||||
_findclose(m_hEnumFile);
|
||||
m_hEnumFile = -1L;
|
||||
return false;
|
||||
};
|
||||
return true;
|
||||
}
|
||||
|
||||
bool StartEnumeration(const char *pszEnumPathAndPattern, __finddata64_t *pFile) {
|
||||
if (m_hEnumFile != -1L) {
|
||||
_findclose(m_hEnumFile);
|
||||
m_hEnumFile = -1L;
|
||||
}
|
||||
if ((m_hEnumFile = _findfirst64(pszEnumPathAndPattern, pFile)) == -1L) {
|
||||
_findclose(m_hEnumFile);
|
||||
m_hEnumFile = -1L;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool StartEnumeration(char *pszEnumPath, char *pszEnumPattern, __finddata64_t *pFile) {
|
||||
char szPath[_MAX_PATH];
|
||||
strcpy(szPath, pszEnumPath);
|
||||
if (szPath[strlen(szPath)] != '\\' &&
|
||||
szPath[strlen(szPath)] != '/') {
|
||||
strcat(szPath, "\\");
|
||||
}
|
||||
strcat(szPath, pszEnumPattern);
|
||||
m_hEnumFile = _findfirst64(szPath, pFile);
|
||||
return m_hEnumFile != -1;
|
||||
}
|
||||
|
||||
protected:
|
||||
intptr_t m_hEnumFile;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user