Updated cursor positioning description for File open()

Added more details about the cursor offsets for the different ModeFlags
in the `File` class.

(cherry picked from commit 5e77eea216)
This commit is contained in:
Maganty Rushyendra 2020-08-04 13:05:48 +08:00 committed by Rémi Verschelde
parent 1f7f28a1eb
commit fdb5561e55
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 4 additions and 4 deletions

View File

@ -451,16 +451,16 @@
</members> </members>
<constants> <constants>
<constant name="READ" value="1" enum="ModeFlags"> <constant name="READ" value="1" enum="ModeFlags">
Opens the file for read operations. Opens the file for read operations. The cursor is positioned at the beginning of the file.
</constant> </constant>
<constant name="WRITE" value="2" enum="ModeFlags"> <constant name="WRITE" value="2" enum="ModeFlags">
Opens the file for write operations. Create it if the file does not exist and truncate if it exists. Opens the file for write operations. The file is created if it does not exist, and truncated if it does.
</constant> </constant>
<constant name="READ_WRITE" value="3" enum="ModeFlags"> <constant name="READ_WRITE" value="3" enum="ModeFlags">
Opens the file for read and write operations. Does not truncate the file. Opens the file for read and write operations. Does not truncate the file. The cursor is positioned at the beginning of the file.
</constant> </constant>
<constant name="WRITE_READ" value="7" enum="ModeFlags"> <constant name="WRITE_READ" value="7" enum="ModeFlags">
Opens the file for read and write operations. Create it if the file does not exist and truncate if it exists. Opens the file for read and write operations. The file is created if it does not exist, and truncated if it does. The cursor is positioned at the beginning of the file.
</constant> </constant>
<constant name="COMPRESSION_FASTLZ" value="0" enum="CompressionMode"> <constant name="COMPRESSION_FASTLZ" value="0" enum="CompressionMode">
Uses the [url=http://fastlz.org/]FastLZ[/url] compression method. Uses the [url=http://fastlz.org/]FastLZ[/url] compression method.