76 bool chdir(
string path);
101 nothing chgrp(
int gid);
127 nothing chgrp(
string groupname);
200 nothing
chown(
string username);
213 constructor(*
string encoding);
248 int create(softint mode = 0777);
284 hash<StatInfo>
hstat();
342 list
list(
string regex, softint regex_options = 0, softbool full =
False);
370 list listDirs(
bool full =
False);
402 list listDirs(
string regex, softint regex_options = 0, softbool full =
False);
430 list listFiles(
bool full =
False);
462 list listFiles(
string regex, softint regex_options = 0, softbool full =
False);
485 nothing
mkdir(
string subdir, softint mode = 0777);
501 Dir openDir(
string subdir, *
string encoding);
522 File openFile(
string filename,
int flags =
O_RDONLY,
int mode = 0666, *
string encoding);
561 bool removeFile(
string file);
585 nothing
rmdir(
string subdir);
634 hash<FilesystemInfo>
statvfs();
date date(date dt)
Returns the date passed.
int mode
inode protection mode
Definition: QC_Dir.dox.h:24
date ctime
last change time of the file's inode
Definition: QC_Dir.dox.h:14
This class implements directory handling, file listing, creating/removing subdirectories, etc.
Definition: QC_Dir.dox.h:55
int gid
group ID of the owner
Definition: QC_Dir.dox.h:18
*string link
symbolic link target (if present)
Definition: QC_Dir.dox.h:22
*list stat(string path)
Returns a list of file status values for the path argument, following any symbolic links; if any erro...
int nlink
number of hard links to this file
Definition: QC_Dir.dox.h:30
int chmod(string path, softint mode)
Changes the mode of a file or directory.
int rdev
device type number
Definition: QC_Dir.dox.h:34
string perm
a string giving UNIX-style permissions for the file (ex: "-rwxr-xr-x")
Definition: QC_Dir.dox.h:32
date mtime
last modified time of the file
Definition: QC_Dir.dox.h:26
date atime
last access time of the file
Definition: QC_Dir.dox.h:8
const False
logical False
Definition: qc_qore.dox.h:92
int dev
device inode number the file is on
Definition: QC_Dir.dox.h:16
list list(...)
Returns an untyped list of the arguments passed at the top level.
*hash< StatInfo > hstat(string path)
Returns a StatInfo hash for the path argument, following any symbolic links; if any errors occur...
int uid
user ID of the owner
Definition: QC_Dir.dox.h:40
int mkdir(string path, softint mode=0777, bool parents=False)
Creates a directory, optionally specifying the mode.
bool regex(string str, string regex, int options=0)
Returns True if the regular expression matches the string passed, otherwise returns False...
int inode
inode of the file
Definition: QC_Dir.dox.h:20
*hash< FilesystemInfo > statvfs(string path)
Returns a hash of filesystem status values for the file or directory path passed. ...
bool exists(...)
A function performing the same role as the exists operator.
file status information hash as returned by Dir::list(), Dir::listFiles(), and Dir::listDirs() if the...
Definition: QC_Dir.dox.h:6
int chdir(string path)
Changes the current working directory for the current process.
int blocks
blocks allocated for the file; may be zero if the platform's internal stat() (2) function does not pr...
Definition: QC_Dir.dox.h:12
int rmdir(string path)
Removes a directory.
int size
file size in bytes
Definition: QC_Dir.dox.h:36
int blksize
block size; may be zero if the platform's internal stat() (2) function does not provide this info ...
Definition: QC_Dir.dox.h:10
const O_RDONLY
Open the file read-only.
Definition: QC_File.dox.h:760
The File class allows Qore programs to read, write, and create files.
Definition: QC_File.dox.h:50
string type
a string giving the file type; one of: - "BLOCK-DEVICE" - "DIRECTORY" - "CHARACTER-DEVICE" - "...
Definition: QC_Dir.dox.h:38
int chown(string path, softint owner=-1, softint group=-1)
Changes the user and group owners of a file, if the current user has permission to do so (normally on...
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
string name
a string giving the file or directory name
Definition: QC_Dir.dox.h:28