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