本文整理匯總了PHP中OC_Filesystem::stat方法的典型用法代碼示例。如果您正苦於以下問題:PHP OC_Filesystem::stat方法的具體用法?PHP OC_Filesystem::stat怎麽用?PHP OC_Filesystem::stat使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OC_Filesystem
的用法示例。
在下文中一共展示了OC_Filesystem::stat方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getDirectoryContent
/**
* get the content of a directory
* @param dir $directory
*/
public static function getDirectoryContent($directory)
{
if (strpos($directory, OC::$CONFIG_DATADIRECTORY) === 0) {
$directory = substr($directory, strlen(OC::$CONFIG_DATADIRECTORY));
}
$filesfound = true;
$content = array();
$dirs = array();
$file = array();
$files = array();
if (OC_Filesystem::is_dir($directory)) {
if ($dh = OC_Filesystem::opendir($directory)) {
while (($filename = readdir($dh)) !== false) {
if ($filename != '.' and $filename != '..' and substr($filename, 0, 1) != '.') {
$file = array();
$filesfound = true;
$file['name'] = $filename;
$file['directory'] = $directory;
$stat = OC_Filesystem::stat($directory . '/' . $filename);
$file = array_merge($file, $stat);
$file['size'] = OC_Filesystem::filesize($directory . '/' . $filename);
$file['mime'] = OC_Files::getMimeType($directory . '/' . $filename);
$file['readable'] = OC_Filesystem::is_readable($directory . '/' . $filename);
$file['writeable'] = OC_Filesystem::is_writeable($directory . '/' . $filename);
$file['type'] = OC_Filesystem::filetype($directory . '/' . $filename);
if ($file['type'] == 'dir') {
$dirs[$file['name']] = $file;
} else {
$files[$file['name']] = $file;
}
}
}
closedir($dh);
}
}
uksort($dirs, "strnatcasecmp");
uksort($files, "strnatcasecmp");
$content = array_merge($dirs, $files);
if ($filesfound) {
return $content;
} else {
return false;
}
}
示例2: stat
/**
* Set the stat cache
*/
protected function stat()
{
if (!isset($this->stat_cache)) {
$this->stat_cache = OC_Filesystem::stat($this->path);
}
}
示例3: getFileinfoCache
/**
* Make sure the fileinfo cache is filled. Uses OC_FileCache or a direct stat
*/
protected function getFileinfoCache()
{
if (!isset($this->fileinfo_cache)) {
if ($fileinfo_cache = OC_FileCache::get($this->path)) {
} else {
$fileinfo_cache = OC_Filesystem::stat($this->path);
}
$this->fileinfo_cache = $fileinfo_cache;
}
}