⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gdirlist.h

📁 一个非常有用的开源代码
💻 H
字号:
/*	Copyright (C) 2006, Mike Gashler	This library is free software; you can redistribute it and/or	modify it under the terms of the GNU Lesser General Public	License as published by the Free Software Foundation; either	version 2.1 of the License, or (at your option) any later version.	see http://www.gnu.org/copyleft/lesser.html*/#ifndef __GDIRLIST_H__#define __GDIRLIST_H__#ifdef WIN32// ----------------------//  WINDOWS VERSION// ----------------------class GFileFinder;class GQueue;class GDirList{protected:	GFileFinder* m_pFinder[256]; // it won't search more than 256 dir nests deep	int m_nNests;	GQueue* m_pBuffer;	char m_szOldDir[256];	bool m_bReportFiles;	bool m_bReportDirs;	bool m_bRecurseSubDirs;	bool m_bReportPaths;	char* m_pTempBuf;public:	GDirList(bool bRecurseSubDirs = true, bool bReportFiles = true, bool bReportDirs = false, bool bReportPaths = true);	virtual ~GDirList();	const char* GetNext();protected:	void SetTempBuf(char* pNewString);};#else // WIN32// ----------------------//  LINUX VERSION// ----------------------#include <sys/types.h>#include <sys/dir.h>#include <dirent.h>class GQueue;class GDirList{protected:	DIR* m_pDirs[256]; // it won't search more than 256 dir nests deep	DIR* m_pCurDir;	int m_nNests;	GQueue* m_pBuffer;	char m_szOldDir[256];	bool m_bReportFiles;	bool m_bReportDirs;	bool m_bRecurseSubDirs;	bool m_bReportPaths;	char* m_pTempBuf;public:	GDirList(bool bRecurseSubDirs = true, bool bReportFiles = true, bool bReportDirs = false, bool bReportPaths = true);	virtual ~GDirList();	const char* GetNext();protected:	void SetTempBuf(char* pNewString);};#endif // !WIN32#endif // __GDIRLIST_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -