Defines path to android /mnt directory
Defines mods folder path, ends with "/"
Defines user directory path, ends with "/"
Lists children directories for the specified path
home-relative or absolute path to the file
array of java.io.File instances of listed directories
Lists files in the specified directory
path to directory to look for files in
extension of the files to include to the output. Use empty string to include all files
array of java.io.File instances that match specified extension
Reads bytes array from assets
asset name
java array of bytes read from assets or null if asset doesn't exist
Reads bitmap from file
home-relative or absolute path to the file
android.graphics.Bitmap object of the bitmap that was read from file or null if file does not exist or is not accessible
Reads bitmap from asset by its full name
asset name
android.graphics.Bitmap object of the bitmap that was read from asset or null, if asset doesn't exist
Reads file as JSON
home-relative or absolute path to the file
value read from JSON file
Reads file as key:value pairs
home-relative or absolute path to the file
separator between key and value, ":" by default
object containing key:value pairs from file
Reads text from file
home-relative or absolute path to the file
file contents or null if file does not exist or not accessible
Reads string from asset by its full name
asset name
asset contents or null if asset doesn't exist
Writes bitmap to png file
home-relative or absolute path to the file
android.graphics.Bitmap object of the bitmap to be written to the file
Writes object to file as JSON
home-relative or absolute path to the file
object to be written to the file as JSON
if true, output JSON is beautified
Writes key:value pairs to the file
home-relative or absolute path to the file
object to be written to the file as a set of key:value pairs
separator between key and value, ":" by default
Writes text to the file
home-relative or absolute path to the file
text to be written to the file
if true, appends text to the file, overrides it otherwise. Default value is false
Converts home-relative path to absolute
input path
input string if input string is an absolute path, an absolute path if input string is a home-relative path
Verifies if specified home-relative or absolute path exists
path to be verified
true, if specified path exists, false otherwise
Creates directory by its home-relative or absolute path, if one of the parent directories doesn't exist, creates them
path to the new directory
Creates CoreEngine working directories. Called by CoreEngine and should not be called by end user
Generated using TypeDoc
Module that provides methods to work with android file system