Source: FileSystem/AxFileInfo.js

/**
 * Contains information on a file
 * @constructor
 */
function AxFileInfo()
{
    this.fileName = new AxString();
    this.isDirectory = false;
    this.size = 0;
}

Documentation generated by JSDoc 3.5.3 on Mon Feb 19 2018 20:39:26 GMT+0200 (FLE Standard Time)