Scripts: Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset

Discuss and share scripts and script files...
Post Reply
Norn
Posts: 417
Joined: 24 Oct 2021 16:10

Scripts: Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset

Post by Norn »

Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset (tags, label, comment).
Attachments
Reset invalid tagged items (tags, label, comment) via Everything tool (v1.1).zip
(333.22 KiB) Downloaded 60 times
Reset invalid tagged items (tags, label, comment) via Everything tool.zip
(333.07 KiB) Downloaded 54 times
Last edited by Norn on 13 Jul 2022 14:33, edited 2 times in total.
Win10, Win11 @100% 2560x1440 22H2

Norn
Posts: 417
Joined: 24 Oct 2021 16:10

Re: Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset

Post by Norn »

Import local tags if "XYplorerTag.dat" exists in the current path, then Export local tags to "XYplorerTag.dat" (update file). Or Export local tags to "XYplorerTag.dat" :

Code: Select all

//Function : Import local tags if "XYplorerTag.dat" exists in the current path, then Export local tags to "XYplorerTag.dat" (update file) | Export local tags to "XYplorerTag.dat"
//Created  : 2022-07-07
//Modified : 2022-07-07
//Version  : 1.0

//If XYplorerTag.dat exists in the current path
if(exists("<curpath>\XYplorerTag.dat") == "1") {
 //Import local tags "XYplorerTag.dat"
 tagload("<curpath>\XYplorerTag.dat", 1);
 
 //Export local tags to "XYplorerTag.dat"  (update file)
 tagexport(, "<curpath>", 3);
 end '1==1';   //exit
}

//Export local tags to "XYplorerTag.dat"
 tagexport(, "<curpath>", 3);
Win10, Win11 @100% 2560x1440 22H2

Post Reply