Path
A class made in PHP inspired by nodes path module, for modify and create path strings, also read folder/file information, (*1)
Resolve path, (*2)
// This will return a path to /hello/world
Path::resolve("hello", "world");
Basename, (*3)
Path::basename("test.php");
Dirname, (*4)
Path::dirname("/var/www/test.php");
Extension name, (*5)
Path::extname("test.php");
Parse, (*6)
Path::parse("test.php");
Exists, (*7)
Path::exists("test.php");
Create directory, (*8)
// This will create all the folders needed untill the last one is created
Path::mkdir("/this/is/a/path/to/create");
Remove directory, (*9)
// This will remove all the subfolders and files in the selected path recursively
Path::rmdir("/remove/this/folder");
Documentation not yet complete, (*10)