Skip to content

Latest commit

 

History

History
executable file
·
23 lines (18 loc) · 964 Bytes

File metadata and controls

executable file
·
23 lines (18 loc) · 964 Bytes

FSnode

FSnode is a node-based Uniform FileSystem handler, written in PHP. It allows you to access all kind of file systems in the exact same manner, with the same simple commands. You can write your web application once and let users switch file system/platform; mount through URI.

###Example:

/*initiate*/ $fs = new FSnode();
  /*or*/ $fs = FSnode::load_URI('file://path/to/here/');
  /*or*/ $fs = FSnode('file://path/to/here/');
/*to read a file*/ $raw = $fs->read('README.md');
/*to save a file*/ $fs->write('README.md', $raw);

###Extensions available:

Manual: see ./manual/Introduction.md

License: cc-by-nd