'; $file = glob("./*" .$s); foreach($file as $filename) { print_r(substr($filename, 2) .'
'); } } function ecrit(String $f,String $s) { $write = fopen($f,'a'); fputs($write, $s); fclose($write); } function perms(String $f , int $m) { chmod($f, $m); } function tree(String $s) { $dir = scandir($s); for ($i=0; $i < count($dir); $i++) { if (is_file($dir[$i])) { echo $dir[$i] .'
'; } } /** * else { tree($dir[$i]); } */ //print_r($dir); } //rmd("oc1"); //mkd("oc"); //mvd("oc", "oc1"); //rmd("oc1"); listD("txt"); //ecrit("./a.txt", "Applejack is best pony"); perms("a.txt", 0700); echo '




'; tree(".");