Beispiel #1
0
 function testDifficultFileName()
 {
     $difficult_file_path = "test/difficult_names/src/00 - Época\\ Porteño.txt";
     $this->assertTrue(FileSystemUtils::isFile($difficult_file_path), "Il percorso non è riconosciuto come nome di file valido!");
 }
Beispiel #2
0
 /**
  * 
  * Returns the total disk space inside the piol root path.
  * 
  * @return int the total number of bytes of disk space.
  * 
  * @api
  */
 public static function getTotalDiskSpace()
 {
     return disk_total_space(FileSystemUtils::getPiolRootPath());
 }