From 4cf0fb59c8231f91ccc25cdd236e93246ce85235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Sun, 15 Sep 2024 16:07:38 +0900 Subject: [PATCH] Automation init...3 --- app/Traits/FileTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Traits/FileTrait.php b/app/Traits/FileTrait.php index 05cdbf5..d7fbbc7 100644 --- a/app/Traits/FileTrait.php +++ b/app/Traits/FileTrait.php @@ -7,7 +7,7 @@ trait FileTrait final protected function mkdir_FileTrait(string $path) { if (!is_dir($path)) { - if (!mkdir($path, 0644, true)) { + if (!mkdir($path, 0755, true)) { throw new \Exception("디렉토리 생성 실패:{$path}"); } }