This bit of code doesn't work. Suggestions?Code: Pascal [Select][+][-]Procedure Touch(const aFileName: String);var f : File;begin If Not FileExists(aFileName) then exit; // Try to open the file to update its timestamp AssignFile(f, aFileName); {$I-} // Disable I/O checking Reset(f); {$I+} // Enable I/O checking //Close it to update the timestamp CloseFile(f);end;