Other types of mini-Tree

Features wanted...
DmFedorov
Posts: 680
Joined: 04 Jan 2011 16:36
Location: Germany

Re: Other types of mini-Tree

Post by DmFedorov »

Code: Select all

    $notes = <<<>>>

First uncheck global visual filter
Tree of current folder. Enter a date range
Default "2017.04.01 - 2017.04.02"
>>>;
    $dateModified = input("Enter a date range...", $notes, "2017.04.01 - 2017.04.02");
    if (!$dateModified) { status "No dates, aborted!", "8B4513", "stop"; end true; }

    $time = "dateM: $dateModified";
    $modified = quicksearch("$time /f /excl=\$Recycle.Bin\|\System Volume Information\",  , "|", "s");
    $folders = formatlist(regexreplace($modified, "[^\\]*?(\||$)", "|"), "ed");

    loadtree $folders;
    filter "$time", 2+4;
This works good.
But
1) I need every time uncheck the global visual filter
2) I need uncheck in Configuration "Expand tree nodes on single-click"
3) I do not know how to mark folders with color (or something else) to know that in this folder I have found files.
(Many intermediate folders do not have files)

I have not seen message from here: status "No dates, aborted!" and i don't know what is the "8B4513"
-----------
And i want to have 2017.04.01 - 2017.04.02 with hours, minutes and secunds (don't know format)

Post Reply