- DESCRIPTION
- PROPERTIES
- filepath : String
- The filepath of this file.
- exists : Logical
- size : Int32
- is_gamestate : Logical
- data : String
- METHODS
- init(String init:filepath)
- exists().Logical
- Returns whether or not this file already exists.
- size().Int32
- Returns the byte size of this file. Throws a FileError if the file does not exist.
- create_reader().Reader<<Char>>
- Returns a Reader<<Char>> that returns characters from this data file.
- create_writer().TextWriter
- Returns a TextWriter that can write and print data to this file.
- create_appender().TextWriter
- Like write() but appends data to the file, if it exists, rather than overwriting it.
- is_directory().Logical
- Returns false - directory structures are not supported by DataFile.
- absolute_path().String
- Returns the absolute path denoted by this File object.
- to_String().String
- Returns the original filepath of this File object.
- absolute_filepath().String
- Same as 'filepath' for DataFile objects.
- directory_listing().String[]
- Throws an UnsupportedMethodError.
- init_object()
- hash_code().Int32
- create_duplicate().Object
- op==(Object other).Logical {multimethod}
- op<>(Object other).Logical {multimethod}
- type_name().String : native
- runtime_type().RuntimeType : native
- runtime_properties().RuntimeProperties
- runtime_methods().RuntimeMethods
- to_List().Char[]
- to_bytes().Byte[]
- init(String _path,String _filename)
- path().String
- filename().String
- directory_listing(Int32 flags).String[]
- extension().String
|