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}"); } }