}
public function filetype($path) {
- $this->init();
return @filetype($this->constructUrl($path));
}
public function mkdir($path) {
- $this->init();
return @mkdir($this->constructUrl($path));
}
return false;
}
- $this->init();
-
$path = $this->constructUrl($path);
// if the file doesn't exist we create it
* @return bool
*/
public function hasUpdated($path,$time) {
- $this->init();
-
// this it a work around for folder mtimes -> we loop it's content
if ( $this->is_dir($path)) {
$actualTime=$this->collectionMTime($path);