Method |
Description |
|
_abspath ( string $path ) : string |
Convert path related to root dir into real path |
|
_archive ( string $dir, array $files, string $name, array $arc ) : string | boolean |
Create archive and return its path |
|
_basename ( string $path ) : string |
Return file name |
|
_checkArchivers ( ) : void |
Detect available archivers |
|
_chmod ( string $path, string $mode ) : boolean |
chmod implementation |
|
_copy ( string $source, string $targetDir, string $name ) : boolean |
Copy file into another file |
|
_dimensions ( string $path, string $mime ) : string |
Return object width and height
Usualy used for images, but can be realize for video etc. |
|
_dirname ( string $path ) : string |
Return parent directory path |
|
_extract ( string $path, array $arc ) : true |
Extract files from archive |
|
_fclose ( resource $fp, string $path = '' ) : boolean |
Close opened file |
|
_filePutContents ( string $path, string $content ) : boolean |
Write a string to a file |
|
_findSymlinks ( string $path ) : boolean |
Recursive symlinks search |
|
_fopen ( string $path, string $mode = 'rb' ) : resource | false |
Open file and return file pointer |
|
_getContents ( string $path ) : string | false |
Get file contents |
|
_inpath ( string $path, string $parent ) : boolean |
Return true if $path is children of $parent |
|
_joinPath ( string $dir, string $name ) : string |
Join dir name and file name and return full path |
|
_mkdir ( string $path, string $name ) : string | boolean |
Create dir and return created dir path or false on failed |
|
_mkfile ( string $path, string $name ) : string | boolean |
Create file and return it's path or false on failed |
|
_move ( string $source, $targetDir, string $name ) : boolean | string |
Move file into another parent dir. |
|
_normpath ( string $path ) : string |
Return normalized path, this works the same as os.path.normpath() in Python |
|
_path ( string $path ) : string |
Return fake path started from root dir |
|
_relpath ( string $path ) : string |
Return file path related to root dir |
|
_rmdir ( string $path ) : boolean |
Remove dir |
|
_save ( resource $fp, string $dir, string $name, array $stat ) : boolean | string |
Create new file and write into it from file pointer. |
|
_scandir ( string $path ) : array |
Return files list in directory. |
|
_setContent ( $path, $fp ) |
undocumented function |
|
_stat ( string $path ) : array | false |
Return stat for given path. |
|
_subdirs ( string $path ) : boolean |
Return true if path is dir and has at least one childs directory |
|
_symlink ( string $target, string $path, string $name ) : boolean |
Create symlink. FTP driver does not support symlinks. |
|
_unlink ( string $path ) : boolean |
Remove file |
|
_unpack ( string $path, array $arc ) : void |
Unpack archive |
|
cacheDir ( string $path ) : string |
Cache dir contents |
|
configure ( ) : void |
Set tmp path |
|
doSearch ( string $path, string $q, array $mimes ) : array |
Recursive files search |
|
getParents ( integer $path ) : array |
Return array of parents paths (ids) |
|
init ( ) : boolean |
Prepare driver before mount volume. |
|
loadFilePath ( string $path ) : string |
Return correct file path for LOAD_FILE method |
|
make ( string $path, string $name, string $mime ) : boolean |
Create empty object with required mimetype |
|
query ( string $sql ) : misc |
Perform sql query and return result. |
|