Search found 7 matches
- 2017-02-08T14:29:04-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
Hi I still cant figure out how to wrtie this in windows cmd does any body know how you would go about this ?
- 2017-02-06T19:31:04-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
ok thanks !!, I might set up Cygwin and try it with that.
- 2017-02-06T18:12:38-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
I was also trying to figure out how to still compare the files in each folder but only output the images that have differences to the compared folder as this would save space.
- 2017-02-06T18:10:19-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
Thanks for that !, a friend of mine helped me to write it in Windows and it works really good heres how I got it to work for anyone else needing to know setlocal enabledelayedexpansion for /r Images %%i in (*) do ( set file2=%%i compare %%i "!file2:Images=Images2!" "!file2:Images=compared!" ) This ...
- 2017-02-06T14:44:21-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
Ok thanks yes I'm using windows CMD will the Unix code you just showed work in a similar way ?
- 2017-02-06T13:54:41-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Re: Compare .png
Ok thanks, Im just unsure how to write the loop as I've searched and searched but cant seem to find anything.
- 2017-02-06T06:17:51-07:00
- Forum: Users
- Topic: Compare .png
- Replies: 13
- Views: 6313
Compare .png
Hi I have 2 folders with 100 .png files in each folder they have all the same name e.g IMAG01.png, IMAG02.pmg etc etc. I need to compare each file with the same names and then out put them to a folder called compared. I have tried compare folder1/*.png folder2/*.png compared/*.png but this does not ...