script: refresh missing thumbnails in current and all sub folders
Posted: 18 Apr 2018 06:54
Hello everyone,
I'm sharing the following script which can be used to refresh all thumbnails in a current folder and all-subfolders. I hope this script will be helpful for you.
I'm sharing the following script which can be used to refresh all thumbnails in a current folder and all-subfolders. I hope this script will be helpful for you.
Code: Select all
"Create missing thumbnails (current and subfolders)";
$cur_folder = "<curpath>";
$subDirs = folderreport("dirs", r, $cur_folder, r);
foreach ($sub, $subDirs, <crlf>){
goto "$sub";
#507;
while(1) {
if (strlen(regexmatches(get("status", 3), " refreshed")) != 0) {
break;
}
wait 10;
}
}
goto "$cur_folder";