Announcement

Collapse
No announcement yet.

recursive with command line only ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    recursive with command line only ?

    I use daily this script below to rotate and reduce size of any given *,jpg in a directory.

    Code:
    i_view64.exe" *.jpg /jpgq=85 /convert=*.jpg /jpg_rotate=(6,1,1,0,0,0,0,0)
    Is there any way to make it recursive for any image file below current dir?

    #2
    How about using a text file for input?

    dir *.jpg /s /b > filelist.txt will create a list of all files recursively.
    Before you post ... Edit your profile • IrfanView 4.62 • Windows 10 Home 19045.2486

    Irfan PaintIrfan View HelpIrfanPaint HelpRiot.dllMore SkinsFastStone CaptureUploads

    Comment


      #3
      Excellent idea!
      Thank you!!

      Comment

      Working...
      X