Click here to Skip to main content
15,891,184 members
Articles / Desktop Programming / MFC

Enumerate files and folders with combined file extensions mask

Rate me:
Please Sign up or sign in to vote.
3.00/5 (7 votes)
7 Jul 20053 min read 42.1K   1K   28  
Reusable class to enumerate files and folders with combined file extensions, example: *.cpp,*.h,*.dsw.
// DeleteDirectoryExcludeSomeFiles.h: interface for the CDeleteDirectoryNFiles class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DELETEDIRECTORYEXCLUDESOMEFILES_H__E6997BCD_AF00_4DBD_B672_64DFF323D810__INCLUDED_)
#define AFX_DELETEDIRECTORYEXCLUDESOMEFILES_H__E6997BCD_AF00_4DBD_B672_64DFF323D810__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "EnumerateFiles.h"

/*
this class is derived from CRecursivelyDeleteFilesExcludeSomeFiles
and hence will delete files
but it main responsibility is to delete directories when
there is no file inside the directory
*/
class CDeleteDirectoryNFiles : public CEnumerateFiles  
{
public:
	CDeleteDirectoryNFiles();
	virtual ~CDeleteDirectoryNFiles();

protected:
	virtual void ExecuteDirectory(LPCTSTR lpzDir);
	virtual void SetFileToNotReadOnlyStatus(LPCTSTR lpzFile);
	virtual void OnFile(LPCTSTR lpzFile);
	CFileStatus m_FileStatus;
};

#endif // !defined(AFX_DELETEDIRECTORYEXCLUDESOMEFILES_H__E6997BCD_AF00_4DBD_B672_64DFF323D810__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions