Lines Matching +full:ini +full:- +full:file
40 * Delete a file or folder from the data filesystem.
45 'config.ini.php',
57 $this->whitespace_path_normalizer = $whitespace_path_normalizer;
67 $data_filesystem = Registry::filesystem()->data();
69 $path = Validator::queryParams($request)->string('path');
71 $normalized_path = $this->whitespace_path_normalizer->normalizePath($path);
74 …FlashMessages::addMessage(I18N::translate('The file %s could not be deleted.', e($path)), 'danger'…
81 $data_filesystem->deleteDirectory($normalized_path);
88 $data_filesystem->delete($normalized_path);
89 … FlashMessages::addMessage(I18N::translate('The file %s has been deleted.', e($path)), 'success');
91 …FlashMessages::addMessage(I18N::translate('The file %s could not be deleted.', e($path)), 'danger'…