mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
31 lines
428 B
C
31 lines
428 B
C
|
#pragma once
|
|||
|
|
|||
|
#ifndef KB
|
|||
|
#define KB (1024)
|
|||
|
#endif
|
|||
|
|
|||
|
#ifndef MB
|
|||
|
#define MB (KB * 1024)
|
|||
|
#endif
|
|||
|
|
|||
|
class CScanDir
|
|||
|
{
|
|||
|
public:
|
|||
|
CScanDir(const char* path, BOOL nested);
|
|||
|
~CScanDir(void);
|
|||
|
protected:
|
|||
|
char* m_pDirPath;
|
|||
|
BOOL m_nested;
|
|||
|
public:
|
|||
|
int BeginScan(void);
|
|||
|
private:
|
|||
|
// ɨ<><C9A8><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int m_nFile, m_nDir;
|
|||
|
__int64 m_nSize;
|
|||
|
public:
|
|||
|
int FileCount(void);
|
|||
|
int DirCount(void);
|
|||
|
__int64 TotalSize(void);
|
|||
|
int BeginRemove(void);
|
|||
|
};
|