Friday, December 3, 2021

List folder contents on the server

Windows 10 & 11 Sound Keyboard Application free download

https://spins.fedoraproject.org/xfce/download/index.html

https://stackoverflow.com/questions/31891080/list-all-files-with-dates-recursively-with-php/31891198 

https://archlinuxgui.in/

https://www.codeproject.com/Articles/1017223/CaptureManager-SDK-Capturing-Recording-and-Streami

+Ecce crucem Domini: fugite partes adversae+

<?php

header("Pragma: public");
header("Cache-Control: private");
header("Content-Type: text/csv");
header("Content-Disposition: attachment; filename=age-of-files.csv");

$rdi = new RecursiveDirectoryIterator("."); // The directory here
$rii = new RecursiveIteratorIterator($rdi);

foreach ($rii as $filename=>$cur) {
    echo $cur.', '.date('m-d-Y', $cur->getATime() ).', '.date('H:i:s', $cur->getATime() )."\r\n";
}
?>

+

No comments:

Post a Comment

Коментар: