int creat(const char* file="", int mode=0644)


Method Description

Equivalent to open(file, O_CREAT | O_WRONLY | O_TRUNC, mode).

See also :

Opens a file. URLs are accepted. Works as its standard equivalent.
intopen(const char* file="", int flags=O_RDWR, int mode=0644)

Close the file associated with this file descriptor
int close(int fd)


Copyright © Nicolas Brodu, 1999 - 2000