예제 #1
0
파일: FileExample.php 프로젝트: naucon/file
}
echo 'Copy file to target directory';
echo '<br/>';
$examplePath = __DIR__ . '/example.txt';
$exampleCopyPath = __DIR__ . '/tmp/target/';
$fileObject = new File($examplePath);
$fileObject->copy($exampleCopyPath);
$fileObject->rename('example_copy.txt');
echo 'Move copied file to a new directory';
echo '<br/>';
$exampleMovePath = __DIR__ . '/tmp/target/move/';
$fileObject->move($exampleMovePath);
$fileObject->rename('example_move.txt');
echo 'Moved File ' . $fileObject->getPathname() . ' do' . ($fileObject->exists() ? '' : ' not') . ' exist.';
echo '<br/>';
echo 'File is' . ($fileObject->isReadable() ? '' : ' not') . ' readable.';
echo '<br/>';
echo 'File is' . ($fileObject->isWritable() ? '' : ' not') . ' writeable.';
echo '<br/>';
echo 'File permission: ' . $fileObject->getPermission();
echo '<br/>';
echo '<br/>';
echo 'Remove file';
echo '<br/>';
$deletePath = __DIR__ . '/tmp/example.txt';
$fileObject = new File($deletePath);
$fileObject->delete();
echo 'Remove directories';
echo '<br/>';
$deletePath = __DIR__ . '/tmp/target/';
$fileObject = new File($deletePath);
예제 #2
0
파일: FileTest.php 프로젝트: naucon/file
 /**
  * @depends     testExist
  * @return      void
  */
 public function testMkdirs()
 {
     $filePath = __DIR__ . '/tmp/bar/lv1/';
     if (is_dir($filePath)) {
         $this->markTestSkipped();
     } else {
         $fileObject = new File($filePath);
         $this->assertTrue($fileObject->mkdirs());
         $this->assertTrue($fileObject->isReadable());
         $this->assertTrue($fileObject->isWritable());
         $mode = 0777;
         $filePath = __DIR__ . '/tmp/bar/lv1/lv2/lv3/';
         $fileObject = new File($filePath);
         $this->assertTrue($fileObject->mkdirs($mode));
         $this->assertTrue($fileObject->isReadable());
         $this->assertTrue($fileObject->isWritable());
     }
 }