/usr/include/fox-1.6/FXDir.h is in libfox-1.6-dev 1.6.49-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | /********************************************************************************
* *
* D i r e c t o r y E n u m e r a t o r *
* *
*********************************************************************************
* Copyright (C) 2005,2006 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* 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. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXDir.h,v 1.24 2006/01/22 17:58:00 fox Exp $ *
********************************************************************************/
#ifndef FXDIR_H
#define FXDIR_H
namespace FX {
/// Directory enumerator
class FXAPI FXDir {
private:
FXuval space[256];
private:
FXDir(const FXDir&);
FXDir &operator=(const FXDir&);
public:
/// Options for listing files
enum {
MatchAll = 0, /// Matching files and directories
NoFiles = 1, /// Don't list any files
NoDirs = 2, /// Don't list any directories
AllFiles = 4, /// List all files
AllDirs = 8, /// List all directories
HiddenFiles = 16, /// List hidden files also
HiddenDirs = 32, /// List hidden directories also
NoParent = 64, /// Don't include '..' in the listing
CaseFold = 128 /// Matching is case-insensitive
};
public:
/// Construct directory enumerator
FXDir();
/// Construct directory enumerator open on path
FXDir(const FXString& path);
/// Open directory to path, return true if ok.
virtual bool open(const FXString& path);
/// Returns true if the directory is open
virtual bool isOpen() const;
/// Go to next one
virtual bool next();
/// Return current file name
virtual FXString name() const;
/// Close directory
virtual void close();
/// Create directory
static bool create(const FXString& path,FXuint mode=FXIO::OwnerFull|FXIO::GroupFull|FXIO::OtherFull);
/// Remove directory
static bool remove(const FXString& path);
/// Rename or move srcpath to dstpath
static bool rename(const FXString& srcpath,const FXString& dstpath);
/**
* 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.
*/
static FXint listFiles(FXString*& filelist,const FXString& path,const FXString& pattern="*",FXuint flags=FXDir::MatchAll);
/**
* List drives, i.e. roots of directory trees.
* Return the number of drives in the string array.
*/
static FXint listDrives(FXString*& drivelist);
/// Destructor
virtual ~FXDir();
};
}
#endif
|