in reply to How to check if a file is modified or missing on windows server using a perl script

-e $filePathAndName will tell you if it exists. To determine if it has changed, you need to have something to compare it to. If you have a backup, you can compare the two files byte by byte to see if they are identical.

  • Comment on Re: How to check if a file is modified or missing on windows server using a perl script
  • Download Code