5e04a990eb
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@1353 dfc29bdd-3216-0410-991c-e03cc46cb475
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
// Copyright (C) 2002-2008 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#ifndef __I_FILE_LIST_H_INCLUDED__
|
|
#define __I_FILE_LIST_H_INCLUDED__
|
|
|
|
#include "IReferenceCounted.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace io
|
|
{
|
|
|
|
//! The Filelist lists all files in a directory.
|
|
class IFileList : public virtual IReferenceCounted
|
|
{
|
|
public:
|
|
|
|
//! Destructor
|
|
virtual ~IFileList() {}
|
|
|
|
//! Get the number of files in the filelist.
|
|
/** \return Amount of files and directories in the file list. */
|
|
virtual u32 getFileCount() const = 0;
|
|
|
|
//! Gets the name of a file in the list, based on an index.
|
|
/** The path is not included in this name. Use getFullFileName for this.
|
|
\param index is the zero based index of the file which name should
|
|
be returned. The index has to be smaller than the amount getFileCount() returns.
|
|
\return File name of the file. Returns 0, if an error occured. */
|
|
virtual const c8* getFileName(u32 index) const = 0;
|
|
|
|
//! Gets the full name of a file in the list, path included, based on an index.
|
|
/** \param index is the zero based index of the file which name should
|
|
be returned. The index has to be smaller than the amount getFileCount() returns.
|
|
\return File name of the file. Returns 0, if an error occured. */
|
|
virtual const c8* getFullFileName(u32 index) = 0;
|
|
|
|
//! Returns of the file is a directory
|
|
/** \param index is the zero based index of the file which name should
|
|
be returned. The index has to be smaller than the amount getFileCount() returns.
|
|
\return True, if the file is a directory, and false, if it is not.
|
|
If an error occurs, the result is undefined. */
|
|
virtual bool isDirectory(u32 index) const = 0;
|
|
};
|
|
|
|
} // end namespace irr
|
|
} // end namespace io
|
|
|
|
|
|
#endif
|
|
|