Page 1 of 1
Scripts: Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset
Posted: 10 Jul 2022 21:51
by Norn
Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset (tags, label, comment).
Re: Check for invalid tagged items (tags, label, comment), search via Everything tool, and reset
Posted: 10 Jul 2022 23:09
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);