Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php74 $stat = stat($path);
83 $file->setUid($stat['uid']);
84 $file->setGid($stat['gid']);
85 $file->setMtime($stat['mtime']);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php717 * Disable the stat cache
726 * Enable the stat cache
735 * Clear the stat cache
940 // we could do a stat on the alleged $dir to see if it's a directory but that doesn't tell us
1056 $stat = $this->lstat($dir . '/' . $key);
1057 $is_directory = $stat && $stat['type'] === NET_SFTP_TYPE_DIRECTORY;
1249 * Any parameter returned by stat is a valid sort parameter for this function.
1307 if (!isset($value->stat) && isset($temp[$dir]->stat)) {
1519 function stat($filename) global() function in phpseclib\\Net\\SFTP
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php494 if ($this->sftp->stat($path_to)) {
632 $results = $this->sftp->stat($this->path);
673 $results = $flags & STREAM_URL_STAT_LINK ? $this->sftp->lstat($path) : $this->sftp->stat($path);