File

The file API is for representing file objects in FrameworkJS applications and programmatic selection and accessing their data.

app.file

When the file manager is available in FrameworkJS, the app.file can be used. It has two methode, app.file.delete and app.file.exists

  • Type: Object

  • Example
    Performing a file function configuration inside the app.js:
    // on read file
    if (app.file.exists)
        app.file.delete();