Create Thumbnails for Sub-Folders

Features wanted...
Post Reply
Tooloohoohoo
Posts: 2
Joined: 26 Nov 2019 14:58

Create Thumbnails for Sub-Folders

Post by Tooloohoohoo »

Please put in a feature to allow the creation and caching of image thumbnails on a parent directory, where it finds images in the entire directory tree of sub-folders instead of just the currently open one.

Thanks!

highend
Posts: 13313
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Create Thumbnails for Sub-Folders

Post by highend »

One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 60558
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Create Thumbnails for Sub-Folders

Post by admin »

For newbies it makes sense to present the script in a copy ready format:

Code: Select all

// create thumbnails in all subfolders
    $cur  = <curpath>;
    $dirs = quicksearch("/d");
    foreach($dir, $dirs, <crlf>){
        goto $dir;
        #307;    // Function code for Thumbnails #2
    }
    goto $cur;
    end true;
Go into the top folder of your choice, then enter the above script here:
Scripting | Run Script...
Click OK and watch it work...

Tooloohoohoo
Posts: 2
Joined: 26 Nov 2019 14:58

Re: Create Thumbnails for Sub-Folders

Post by Tooloohoohoo »

Yup, that worked! Thank you.

I do feel it would still be a good feature to have as a menu command somewhere, but knowing now that's is possible through script makes it much better.

For any other scripting newbies who come across this, if you want the Thumbnail #1, then use 306 in the script instead, or for Thumbnail #3, use 308.

Post Reply