Announcement

Collapse
No announcement yet.

subfolders commandline

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

    subfolders commandline

    soo after 15 years we replaced a Windows98 PC "shame" after installing all the software I needed some replace some links and variables in our upload / resize script.

    after some tests I found out its (still) not easy or possible so resize random-subfolders am I correct in this ?
    is there a workaround ? plugin? etc..

    \*.jpg works fine.

    \abc-123\*.jpg does not work.
    \xyz-456\*.jpg does not work.


    #2
    Try using FOR command, example:
    Code:
    for %%i in (my_subfolder\*.jpg) do i_view32.exe "%%i"
    For more information run FOR /?
    My system: IrfanView 4.62 64bit, Windows 10 22H2, Intel Core i5-3570, 16GB RAM, NVidia GTX 1050Ti 4GB

    Comment

    Working...
    X