2009-09-28 19:37:35 +04:00
|
|
|
/*============================================================================
|
|
|
|
KWSys - Kitware System Library
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-04-08 21:10:44 +04:00
|
|
|
|
2009-09-28 19:37:35 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-04-08 21:10:44 +04:00
|
|
|
|
2009-09-28 19:37:35 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2003-04-08 21:10:44 +04:00
|
|
|
#ifndef @KWSYS_NAMESPACE@_Directory_hxx
|
|
|
|
#define @KWSYS_NAMESPACE@_Directory_hxx
|
|
|
|
|
2003-06-30 18:30:38 +04:00
|
|
|
#include <@KWSYS_NAMESPACE@/Configure.h>
|
2003-04-08 21:10:44 +04:00
|
|
|
|
|
|
|
namespace @KWSYS_NAMESPACE@
|
|
|
|
{
|
|
|
|
|
2003-05-08 22:46:23 +04:00
|
|
|
class DirectoryInternals;
|
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
/** \class Directory
|
|
|
|
* \brief Portable directory/filename traversal.
|
2006-03-17 20:06:41 +03:00
|
|
|
*
|
2003-04-08 21:10:44 +04:00
|
|
|
* Directory provides a portable way of finding the names of the files
|
|
|
|
* in a system directory.
|
|
|
|
*
|
|
|
|
* Directory currently works with Windows and Unix operating systems.
|
|
|
|
*/
|
2006-03-17 20:06:41 +03:00
|
|
|
class @KWSYS_NAMESPACE@_EXPORT Directory
|
2003-04-08 21:10:44 +04:00
|
|
|
{
|
|
|
|
public:
|
2003-05-08 22:46:23 +04:00
|
|
|
Directory();
|
|
|
|
~Directory();
|
2006-03-17 20:06:41 +03:00
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
/**
|
|
|
|
* Load the specified directory and load the names of the files
|
2006-03-17 20:06:41 +03:00
|
|
|
* in that directory. 0 is returned if the directory can not be
|
|
|
|
* opened, 1 if it is opened.
|
2003-04-08 21:10:44 +04:00
|
|
|
*/
|
2003-05-08 22:46:23 +04:00
|
|
|
bool Load(const char*);
|
2006-03-17 20:06:41 +03:00
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
/**
|
|
|
|
* Return the number of files in the current directory.
|
|
|
|
*/
|
2006-03-06 18:12:02 +03:00
|
|
|
unsigned long GetNumberOfFiles() const;
|
2006-03-17 20:06:41 +03:00
|
|
|
|
2006-06-22 18:35:37 +04:00
|
|
|
/**
|
|
|
|
* Return the number of files in the specified directory.
|
|
|
|
* A higher performance static method.
|
|
|
|
*/
|
|
|
|
static unsigned long GetNumberOfFilesInDirectory(const char*);
|
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
/**
|
|
|
|
* Return the file at the given index, the indexing is 0 based
|
|
|
|
*/
|
2006-03-06 18:12:02 +03:00
|
|
|
const char* GetFile(unsigned long) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the path to Open'ed directory
|
|
|
|
*/
|
|
|
|
const char* GetPath() const;
|
|
|
|
|
2006-03-06 19:57:05 +03:00
|
|
|
/**
|
2006-03-17 20:06:41 +03:00
|
|
|
* Clear the internal structure. Used internally at beginning of Load(...)
|
|
|
|
* to clear the cache.
|
2006-03-06 19:57:05 +03:00
|
|
|
*/
|
|
|
|
void Clear();
|
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
private:
|
2003-05-08 22:46:23 +04:00
|
|
|
// Private implementation details.
|
|
|
|
DirectoryInternals* Internal;
|
2007-08-16 15:38:47 +04:00
|
|
|
|
|
|
|
Directory(const Directory&); // Not implemented.
|
|
|
|
void operator=(const Directory&); // Not implemented.
|
2003-04-08 21:10:44 +04:00
|
|
|
}; // End Class: Directory
|
2003-05-08 22:46:23 +04:00
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
} // namespace @KWSYS_NAMESPACE@
|
|
|
|
|
|
|
|
#endif
|