Skip to content

sentfanwyaerda/FSnode

Repository files navigation

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

About

an Uniform FileSystem handler for PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published