Here's what I need:
- FILE NAME
- FILE PATH
- FILE SIZE
- DATE Created
- DATE Modified
- DATE Accessed
- FILE EXTENSION (in its own column)
It reports on selected items (even folders) but not on their content (recursive)?F12 (Info Panel) -> Report Tab -> Current List
By which I take you to mean, Highend, the file names themselves? Well shoot. I'll have to do this in Treesize Pro (or one of the exceedingly inferior free file managers).highend wrote:F12 (Info Panel) -> Report Tab -> Current List
reports on selected items (even folders) but not on their content (recursive)
It doesn't work Qwerty. And it just crashed my XYplorer.TheQwerty wrote:You can do it in the GUI by performing a recursive search (or branch view) for all items (empty name or '*') first and then generating a Current List report on the results. This also allows you to exclude specific folders as desired.
Code: Select all
$sep = strrepeat("=", 80);
$content = gettoken(<clipboard>, 3, $sep, , 2);
$selected = <get SelectedItemsPathNames <crlf>>;
$folders = listfolder(, , 2, <crlf>);
foreach($item, $folders, <crlf>) {
if (strpos($selected, $item) == -1) { // not found, remove it
$escaped = regexreplace($item, "([\\^$.+*|?(){\[])", "\$1");
$content = regexreplace($content, "$sep\r?\n$escaped\\[\s|\S]+?$sep");
}
}
copytext formatlist($content, "e", <crlf>);
I've done this countless times and it does work.semicodin wrote:It doesn't work Qwerty. And it just crashed my XYplorer.TheQwerty wrote:You can do it in the GUI by performing a recursive search (or branch view) for all items (empty name or '*') first and then generating a Current List report on the results. This also allows you to exclude specific folders as desired.
OUCH. Thanks but I'll pass.highend wrote:. . . Now paste (CTRL + v) the clipboard's content where you need it...