User Tools

Site Tools


addons:functions:file

This is an old revision of the document!


File Namespace

The file namespace contains functions that interact with files and folders on the clients system.

You can access these functions via:

ashita.file.

ashita.file.create_directory

ashita.file.create_dir

Creates a directory on the clients system. (Any sub-directories upto the end folder that are not present will also be created.)

bool ashita.file.create_dir(path);
  • Parameters
    • path - (string) The full path to create.
  • Returns
    • bool - True on success, false otherwise.

ashita.file.directory_exists

ashita.file.dir_exists

Determines if the given path exists.

bool ashita.file.dir_exists(path);
  • Parameters
    • path - (string) The full path to check.
  • Returns
    • bool - True if the path exists, false otherwise.

ashita.file.file_exists

Determines if the given file exists.

bool ashita.file.file_exists(file);
  • Parameters
    • file - (string) The full path to the file to check.
  • Returns
    • bool - True if the file exists, false otherwise.

ashita.file.get_directory

ashita.file.get_dir


ashita.file.get_install_dir

addons/functions/file.1492836090.txt.gz · Last modified: 2017/04/21 21:41 by atom0s