Changes between Version 1 and Version 2 of VFS_Binding


Ignore:
Timestamp:
Feb 23, 2008, 8:58:08 PM (16 years ago)
Author:
Jan Wassenberg
Comment:

improve list

Legend:

Unmodified
Added
Removed
Modified
  • VFS_Binding

    v1 v2  
    44[KEEP IN SYNC WITH TDD AND CODE!]
    55
    6 == Pyrogenesis Object Model : VFS (Virtual File System) Interface ==
     6= Pyrogenesis Object Model : VFS (Virtual File System) Interface =
    77
    88Scope: this documentation only covers the Javascript binding, not VFS itself.
     
    1010These stateless functions provide basic file system access within the VFS sandbox. Expected use is in map/saved game selection dialogs; more complex tasks should utilize the complete vfs.h native code interface.
    1111
    12 === VFS functions ===
     12== VFS functions ==
    1313
    14 ==== buildFileList ====
     14=== buildFileList ===
    1515 Overview::
    1616  Return an array of pathname strings, one for each matching entry in the specified directory.
     
    2727
    2828
    29 ==== getFileMTime ====
     29=== getFileMTime ===
    3030 Overview::
    3131  Return time [seconds since 1970] of the last modification to the specified file.
     
    3939 
    4040
    41 ==== getFileSize ====
     41=== getFileSize ===
    4242 Overview::
    4343  Return current size of file.
     
    5151 
    5252
    53 ==== readFile ====
     53=== readFile ===
    5454 Overview::
    5555  Return file contents in a string.
     
    6363 
    6464
    65 ==== readFileLines ====
     65=== readFileLines ===
    6666 Overview::
    6767  Return file contents as an array of lines.