コード例 #1
0
ファイル: Dearchiver.php プロジェクト: apolev/fias
 private static function checkPaths($pathToFileDirectory, $pathToFile)
 {
     FileHelper::ensureIsReadable($pathToFile);
     FileHelper::ensureIsDirectory($pathToFileDirectory);
     FileHelper::ensureIsWritable($pathToFileDirectory);
 }
コード例 #2
0
ファイル: Directory.php プロジェクト: apolev/fias
 public function __construct($path)
 {
     FileHelper::ensureIsReadable($path);
     FileHelper::ensureIsDirectory($path);
     $this->directoryPath = $path;
 }