From: Andreas Unterkircher Date: Wed, 15 Oct 2008 21:35:23 +0000 (+0200) Subject: check if F-Spot database file exists and is readable X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79362554f81c7d1779b1755ca715874a691392f0;p=phpfspot.git check if F-Spot database file exists and is readable Signed-off-by: Andreas Unterkircher --- diff --git a/phpfspot.class.php b/phpfspot.class.php index 92c0fd2..9b24d3b 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -141,6 +141,12 @@ class PHPFSPOT { /******* Opening F-Spot's sqlite database *********/ + /* Check if database file exists and is readable */ + if(!file_exists($this->cfg->fspot_db) || !is_readable($this->cfg->fspot_db)) { + print "Error: ". $this->cfg->fspot_db ." does not exist or is not readable for user ". $this->getuid() .".\n"; + exit(1); + } + /* Check if database file is writeable */ if(!is_writeable($this->cfg->fspot_db)) { print "Error: ". $this->cfg->fspot_db ." is not writeable for user ". $this->getuid() .".\n";