FS.class.php 247 B

1234567891011121314
  1. <?php
  2. namespace Tools {
  3. /**
  4. */
  5. class FS {
  6. public static function mkpath($path) {
  7. if(@mkdir($path) or file_exists($path)) return true;
  8. return (\Tools\FS::mkpath(dirname($path)) and mkdir($path));
  9. }
  10. }
  11. }
  12. ?>