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: 504
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).
You do not have the required permissions to view the files attached to this post.
Last edited by Norn on 13 Jul 2022 14:33, edited 2 times in total.
Windows 11 24H2 @100% 2560x1440

Norn
Posts: 504
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);
Windows 11 24H2 @100% 2560x1440

Post Reply