![]() |
Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members
![]() |
#include <FXDir.h>
Public Types | |
enum | { MatchAll = 0, NoFiles = 1, NoDirs = 2, AllFiles = 4, AllDirs = 8, HiddenFiles = 16, HiddenDirs = 32, NoParent = 64, CaseFold = 128 } |
Public Member Functions | |
FXDir () | |
FXDir (const FXString &path) | |
virtual bool | open (const FXString &path) |
virtual bool | isOpen () const |
virtual bool | next () |
virtual FXString | name () const |
virtual void | close () |
virtual | ~FXDir () |
Static Public Member Functions | |
static bool | create (const FXString &path, FXuint mode=FXIO::OwnerFull|FXIO::GroupFull|FXIO::OtherFull) |
static bool | remove (const FXString &path) |
static bool | rename (const FXString &srcpath, const FXString &dstpath) |
static FXint | listFiles (FXString *&filelist, const FXString &path, const FXString &pattern="*", FXuint flags=FXDir::MatchAll) |
static FXint | listDrives (FXString *&drivelist) |
Directory enumerator.
anonymous enum |
Options for listing files.
FX::FXDir::FXDir | ( | ) |
Construct directory enumerator.
FX::FXDir::FXDir | ( | const FXString & | path | ) |
Construct directory enumerator open on path.
|
virtual |
Destructor.
|
virtual |
Open directory to path, return true if ok.
|
virtual |
Returns true if the directory is open.
|
virtual |
Go to next one.
|
virtual |
Return current file name.
|
virtual |
Close directory.
|
static |
Create directory.
|
static |
Remove directory.
Rename or move srcpath to dstpath.
|
static |
List files in a given directory.
Returns the number of files in the string-array list which matched the pattern or satisfied the flag conditions.
![]() |