Hi there Dale,
Thanks very much for your help. Luckily, it looks like the files are showing the actual modification date.
I'm getting the following error when running the script:
Parse error: syntax error, unexpected T_VARIABLE in /home/schwim/public_html/file_find.php on line 6
<?php
//date of "break in"
$date=1338508800 // set the date here. Convert to UNIX timestamp.
// system "find"
$all_files = 'find / -print'; // Line 6( tried changing to single-quotes but the issue remains)
$file_list = explode("\n",$all_files);
$changed_list = array();
foreach ($file_list as $file) {
if (filemtime($file) > $date) {
$changed_list[]=$file;
}
}
print_r($changed_list);
?>
I'm sorry to continue to bother, but I'm not sure what is incorrect.