I have a situation that I need to have files with .php5 extension on the server to use php version 5, otherwise php version 4 is used (with .php extension).
I started the development locally with .php extension and created a script that copies the modified files (to a local pre-deployment folder) and renames the extension while copying.
Eventually I run into the situation that I needed to modify some of the local .php5 files.
Now I would like to compare the local files between my development (.php) and pre-deployment (.php5) folders. The files have the same names but different extensions.
Is there a way to do this with existing tools? I use WinMerge, but am not sure if such compare is possible (well I can compare 2 different-named files, but I would like to do a directory-compare).
I realize now that maybe I am over-complicating things and should just develop with .php5 files locally.