![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/vendor/infyomlabs/laravel-generator/src/Utils/ |
<?php namespace InfyOm\Generator\Utils; class FileUtil { const FILE_CREATING = 1; const FILE_CREATED = 2; const FILE_DELETING = 3; const FILE_DELETED = 4; public static function createFile($path, $fileName, $contents) { if (!file_exists($path)) { mkdir($path, 0755, true); } $path = $path.$fileName; file_put_contents($path, $contents); } public static function createDirectoryIfNotExist($path, $replace = false) { if (file_exists($path) && $replace) { rmdir($path); } if (!file_exists($path)) { mkdir($path, 0755, true); } } public static function deleteFile($path, $fileName) { if (file_exists($path.$fileName)) { return unlink($path.$fileName); } return false; } }