Hello,

You can do it with PHP.

Code: 
<? // Here the downloads $path = "files"; if (isset($_GET['file'])) { $handle = fopen("$path/".$_GET['file']."", 'a+'); if ($handle) { fwrite($handle, '0'); } else { echo "<br />Error!<br />"; } fclose($handle); } echo "Just click to change the md5 hash<br /<br />"; $handle = opendir ($path); while (false !== ($file = readdir ($handle))){ if ($file != "."){ if ($file != ".."){ if ($file != "index.html") { $byte = filesize($path."/".$file); if (! is_dir($path."/".$file)) { echo "<a href='uploads.php?file=$file'>uploads/$file</a> ($byte Bytes)<br />"; } } } } } closedir($handle); ?>
Best regards,
M. Indonesia