1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:35:56 +00:00

add DiskCache.isWritable

This commit is contained in:
Andrew Dolgov
2019-08-13 12:15:43 +03:00
parent 86308b30ea
commit 82694bd6ce

View File

@@ -10,6 +10,10 @@ class DiskCache {
return $this->dir;
}
public function isWritable() {
return is_dir($this->dir) && is_writable($this->dir);
}
public function exists($filename) {
return file_exists($this->getFullPath($filename));
}