 |
Qore Programming Language Reference Manual
0.9.4.5
|
70 nothing
chown(softint uid, softint gid = -1);
352 int open(
string path, softint flags =
O_RDONLY, softint mode = 0666, *
string encoding);
388 nothing
open2(
string path, softint flags =
O_RDONLY, softint mode = 0666, *
string encoding);
int f_vprintf(string fmt, any fmt_args)
Writes a formatted string with hard field widths to a file, where the second argument is the formatti...
int sync()
Flushes the file's buffer to disk.
const O_EXCL
Raise an error if used with O_CREAT and the file exists.
Definition: QC_File.dox.h:771
const O_APPEND
Open the file in append mode (append on each write)
Definition: QC_File.dox.h:763
nothing open2(string path, softint flags=O_RDONLY, softint mode=0666, *string encoding)
Opens a file in a particular mode; throws an exception on failure.
const O_NOCTTY
don't allocate controlling tty (0 on platforms where this is not available)
Definition: QC_File.dox.h:775
string type(auto arg)
Returns a string giving the data type of the argument passed; see String Type Constants for the value...
const O_RDWR
Open for reading and writing.
Definition: QC_File.dox.h:783
const SEEK_SET
Indicates that the offset is from the start of the file.
Definition: QC_File.dox.h:815
const O_NDELAY
synonym for O_NONBLOCK (untested with Qore; 0 on platforms where this is not available)
Definition: QC_File.dox.h:773
int printf()
This method variant does nothing except return a constant 0; it is only included for backwards-compat...
nothing setCharset(*string encoding)
Sets the character encoding for the file; if called with no argument, the default encoding is set.
int lock(softint type=F_RDLCK, softint start=0, softint len=0, softint whence=SEEK_SET)
Attempts to lock the file according to the arguments passed, does not block.
nothing redirect(Qore::File file)
redirects an existing file to another file
int writei2(int s)
Writes a 2-byte (16 bit) integer to the file in binary big-endian format.
This class allows Qore scripts to get or set terminal settings on UNIX platforms.
Definition: QC_TermIOS.dox.h:45
string getCharset()
Returns the character encoding for the File.
int write(binary data)
Writes binary data to a file.
int writei4LSB(int i)
Writes a 4-byte (32 bit) integer to the file in binary little-endian format.
int print(string data)
Writes string data to a file; string data is converted to the File's character encoding if necessary ...
nothing setTerminalAttributes(softint action=TCSANOW, TermIOS termios)
Sets the current terminal attributes for the File from the TermIOS object passed; does not change the...
const O_TRUNC
Truncate the size to zero.
Definition: QC_File.dox.h:787
const O_NONBLOCK
non-blocking I/O (untested with Qore; 0 on platforms where this is not available)
Definition: QC_File.dox.h:779
int vprintf(string fmt, any fmt_args)
Writes a formatted string with soft field widths to a file, where the second argument is the formatti...
int f_printf(string fmt,...)
Writes a formatted string with hard field widths to the file.
const F_UNLCK
Use for unlocking a lock.
Definition: QC_File.dox.h:801
int writei4(int i)
Writes a 4-byte (32 bit) integer to the file in binary big-endian format.
The File class allows Qore programs to read, write, and create files.
Definition: QC_File.dox.h:51
int writei2LSB(int s)
Writes a 2-byte (16 bit) integer to the file in binary little-endian format.
copy()
Creates a new File object with the same character encoding specification as the original,...
TermIOS getTerminalAttributes()
Returns the current terminal attributes for the file as a TermIOS object returned as the return value...
int open(string path, softint flags=O_RDONLY, softint mode=0666, *string encoding)
Opens a File in a particular mode, returns an error code on failure.
int printf(string fmt,...)
Writes a formatted string with soft field widths to the file.
hash< auto > hash(object obj)
Returns a hash of an object's members.
const O_CREAT
Create the file if it doesn't exist.
Definition: QC_File.dox.h:765
int vprintf()
This method variant does nothing except return a constant 0; it is only included for backwards-compat...
const O_WRONLY
Open the file write-only.
Definition: QC_File.dox.h:789
int writei8(int i)
Writes an 8-byte (64 bit) integer to the file in binary big-endian format.
nothing lockBlocking(softint type=F_RDLCK, softint start=0, softint len=0, softint whence=SEEK_SET)
Attempts to lock the file according to the arguments passed, blocking.
const O_DIRECT
direct disk access hint (0 on platforms where this is not available)
Definition: QC_File.dox.h:767
nothing getTerminalAttributes(TermIOS termios)
Saves the current terminal attributes for the file in the TermIOS object passed; changes the object p...
const F_WRLCK
Use for exclusive write locking.
Definition: QC_File.dox.h:803
const O_RDONLY
Open the file read-only.
Definition: QC_File.dox.h:781
constructor(*string encoding)
Creates the File object.
hash getLockInfo()
Returns a hash of lock information.
int write(string data)
Writes string data to a file; string data is converted to the File's character encoding if necessary ...
const F_RDLCK
Use for read-only locking.
Definition: QC_File.dox.h:799
int writei1(int c)
Writes a 1-byte integer to the file.
int f_vprintf()
This method variant does nothing except return a constant 0; it is only included for backwards-compat...
const O_SYNC
synchronized file update option (0 on platforms where this is not available)
Definition: QC_File.dox.h:785
const O_ACCMODE
Mask for access modes (O_RDONLY|O_WRONLY|O_RDWR)
Definition: QC_File.dox.h:761
int writei8LSB(int i)
Writes an 8-byte (64 bit) integer to the file in binary little-endian format.
const O_DIRECTORY
must be a directory (0 on platforms where this is not available)
Definition: QC_File.dox.h:769
nothing chown(softint uid, softint gid=-1)
Changes the user and group owners of the file on the filesystem (if the current user has sufficient p...
int f_printf()
This method variant does nothing except return a constant 0; it is only included for backwards-compat...
const SEEK_CUR
Indicates that the offset is from the current position in the file.
Definition: QC_File.dox.h:811
const SEEK_END
Indicates that the offset is from the end of the file.
Definition: QC_File.dox.h:813
const O_NOFOLLOW
don't follow links (0 on platforms where this is not available)
Definition: QC_File.dox.h:777
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
The ReadOnlyFile class allows Qore programs to read existing files.
Definition: QC_ReadOnlyFile.dox.h:19
destructor()
Closes the File if it is open and destroys the File object.
const TCSANOW
make change immediate
Definition: QC_TermIOS.dox.h:472
binary binary()
Always returns an empty binary object (of zero length)