19 declare(strict_types=1);
42 public function move(
string $from,
string $to): void
47 public function delete(
string $file_path):
void 57 if (file_exists($file_path)) {
61 $this->
lng->txt(
'file_deleted') .
' ' . $file_path,
74 $objects = scandir($dir);
75 foreach ($objects as $object) {
76 if ($object !=
'.' && $object !=
'..') {
77 if (is_dir($dir .
'/' . $object)) {
80 unlink($dir .
'/' . $object);
93 $absolut_dir = $skin_dir . $dir;
95 if (file_exists($absolut_dir)) {
97 self::recursiveRemoveDir($skin_dir . $dir);
100 $this->
lng->txt(
'dir_deleted') .
' ' . $dir,
107 $this->
lng->txt(
'dir_preserved_linked') .
' ' . $dir,
121 mkdir($target, 0775,
true);
127 $this->
lng->txt(
'dir_created') . $target,
140 $absolut_new_dir = $skin_dir . $new_dir;
141 $absolut_old_dir = $skin_dir . $old_dir;
143 if (file_exists($absolut_new_dir)) {
146 $this->
lng->txt(
'dir_changed_to') .
' ' . $absolut_new_dir,
152 $this->
lng->txt(
'dir_preserved_backup') .
' ' . $absolut_old_dir,
157 mkdir($absolut_new_dir, 0775,
true);
161 $this->
lng->txt(
'dir_copied_from') .
' ' . $absolut_old_dir .
' ' . $this->
lng->txt(
'sty_copy_to') .
' ' . $absolut_new_dir,
165 if (!$has_references) {
169 $this->
lng->txt(
'dir_deleted') .
' ' . $absolut_old_dir,
176 $this->
lng->txt(
'dir_preserved_linked') .
' ' . $absolut_old_dir,
190 foreach (scandir($src) as $file) {
191 $src_file = rtrim($src,
'/') .
'/' . $file;
192 $dest_file = rtrim($dest,
'/') .
'/' . $file;
193 if (!is_readable($src_file)) {
196 if (substr($file, 0, 1) !=
'.') {
197 if (is_dir($src_file)) {
198 if (!file_exists($dest_file)) {
204 'Copy ' . $src_file .
' to ' . $dest_file .
' Error: ' . $e
211 copy($src_file, $dest_file);
215 'Copy ' . $src_file .
' to ' . $dest_file .
' Error: ' . $e
createResourceDirectory(string $source, string $target)
Creates a resource directory (sound, images or fonts) by copying from the source (mostly delos) ...
saveDeleteFile(string $file_path)
Deletes a given file in the container.
__construct(ilLanguage $lng, ilSystemStyleMessageStack $message_stack)
recursiveRemoveDir(string $dir)
Recursive delete of a folder.
const FOLDER_CREATION_FAILED
File System Helper, to reduce deps.
const FILE_CREATION_FAILED
changeResourceDirectory(string $skin_dir, string $new_dir, string $old_dir, bool $has_references)
Alters the name/path of a resource directory.
removeResourceDirectory(string $skin_dir, string $dir, bool $is_linked)
Deletes a resource directory.
move(string $from, string $to)
Used to move a complete directory of a skin.
const FILE_OPENING_FAILED
Used to stack messages to be shown to the user.
setMessageStack(ilSystemStyleMessageStack $message_stack)
ilSystemStyleMessageStack $message_stack
Used to stack messages to be displayed to the user (mostly reports for failed actions) ...
recursiveCopy(string $src, string $dest)
Recursive copy of a folder.