Files
2024-10-14 23:04:58 +08:00

14 lines
386 B
PHP

<?php
function func($commands)
{
$pwd = file_get_contents("pwd.txt");
if (sizeof($commands) == 1) {
$files = scandir("fileroot" . $pwd);
foreach ($files as $file) {
file_put_contents("recent.txt", $file . "<br/>", FILE_APPEND);
}
} else {
file_put_contents("recent.txt", "Invalid number of arguments.<br/>", FILE_APPEND);
}
}