Difference between revisions of "File"

m (1 revision: Importing from potato (again).)
(Added explanation for parentheses.)
Line 1: Line 1:
 
 
Represents an file on the filesystem.
 
Represents an file on the filesystem.
 
== Functions ==
 
== Functions ==
 +
These functions have parentheses in odd places. This is because the ''File:'' namespace is reserved in Mediawiki.
 
{{#ask: [[Category:Functions]] [[parent::File]]
 
{{#ask: [[Category:Functions]] [[parent::File]]
 
| headers=hide
 
| headers=hide

Revision as of 17:14, 14 February 2010

Represents an file on the filesystem.

Functions

These functions have parentheses in odd places. This is because the File: namespace is reserved in Mediawiki.

(File):closeCloses a File.
(File):eofIf the end-of-file has been reached
(File):flushFlushes any buffered written data in the file to disk.
(File):getBufferGets the buffer mode of a file.
(File):getFilenameGets the filename that the File object was created with.
(File):getModeGets the FileMode the file has been opened with.
(File):getSizeReturns the file size.
(File):isEOFGets whether end-of-file has been reached.
(File):isOpenGets whether the file is open.
(File):linesIterate over all the lines in a file.
(File):openOpen the file for write, read or append.
(File):readRead a number of bytes from a file
(File):seekSeek to a position in a file
(File):setBufferSets the buffer mode for a file opened for writing or appending.
(File):tellReturns the position in the file.
(File):writeWrite data to a file.

Enums

BufferModeBuffer modes for File objects.
FileModeThe different modes you can open a File in.

See Also