Skip to content

Commit e19b80f

Browse files
authored
Merge pull request #39 from itskreisler/master
Validates if the directory does not exist and creates it
2 parents 45a6749 + 313b09d commit e19b80f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/JSONDB.php

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ private function check_file()
6868
* @return bool
6969
*/
7070

71+
// Checks if DIR exists, if not create
72+
if (! is_dir($this->dir)) {
73+
mkdir($this->dir, 0700);
74+
}
7175
// Checks if JSON file exists, if not create
7276
if (! file_exists($this->file)) {
7377
touch($this->file);

0 commit comments

Comments
 (0)