branch view

Features wanted...
7iben
Posts: 74
Joined: 04 Apr 2019 18:22

branch view

Post by 7iben »

Hello,
is it possible if I've opened multiple folders with branch view to remove any folder from the branch view view?
Not delete but just remove from the branch view selection?
Thanks for your help.
Attachments
Anmerkung 2019-06-02 200127.png
Anmerkung 2019-06-02 200127.png (75.91 KiB) Viewed 3055 times

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

I work a lot with branch view.
If one after the other could be closed /deselected a faster and clearer work would be possible.
This is really a feature that is missing.
Every day I get annoyed that I can not deselect individual folders from branch view.

admin
Site Admin
Posts: 60595
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: branch view

Post by admin »

I see. But that would be a major feature. Hard to do. But yes, interesting as well.

jweis
Posts: 14
Joined: 23 Apr 2019 21:51

Re: branch view

Post by jweis »

Not sure if this helps but I carefully read question and config-find files branch view then default branch view choose files only then unchecking multi branch view lists top folders worked great in windows 8 as I use this feature often. ver 20.00

jweis
Posts: 14
Joined: 23 Apr 2019 21:51

Re: branch view

Post by jweis »

edit; no thats not what the post is about but thanks for your neat idea with displaying all folders and files in a tree and being able to choose which folders to remove. sorry, ignore my previous post- that wont work

jweis
Posts: 14
Joined: 23 Apr 2019 21:51

Re: branch view

Post by jweis »

I just looked at this today again and it looks user friendly to me the way it is now. You can select which folders you want displayed in b view and then only those folders and the files in them will be listed. Config - find files and branch view - default branch view type to files only. I list line numbers and then just look at the folder path column to see where you are.
It doesnt matter if you have thousands of files listed as Xyplorer blasts through it.

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

I work with this view.
If I have processed the files in a folder, I would like to close the corresponding folder. Then only the unprocessed folders would be open.
If you do not work with branch view, it is certainly sufficient for most users.
But for professional use, this additional option would be crucial and important.
Straight branch view differs from all other explorers.
I think branch view should be further developed.
:tup:

jweis
Posts: 14
Joined: 23 Apr 2019 21:51

Re: branch view

Post by jweis »

Ok, strongly agree that removing/closing those folders (good luck) would be genius.

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

Almost two years have passed. Is there any news yet? Or can nobody do that?

mazot
Posts: 43
Joined: 20 Apr 2020 23:19

Re: branch view

Post by mazot »

I am surprised that nobody has thought of paperfolders.
I wrote this last night.

Code: Select all

"create paperfolder"
        //        if(exists("<xypaper>\FLATtest.pf.txt")==1){
        //        attrstamp("r", 4, "<xypaper>\FLATtest.pf.txt"); // removes "readonly"
        //         }
                 $Items= get ( "SelectedItemsPathNames", ";"); 
                 if( $Items==""){$Items = <curpath>;}
                goto "$Items\? /flat"; // creates Branch View list
                sortby "Path", a;         // sorts by path
                sel a;                    //selects all
                $SelectedItems = get( "SelectedItemsPathNames", <crlf>); // gets all paths & names
                paperfolder ("paper:FLATtest.pf", $SelectedItems, <crlf>);   // creates & opens paperfolder
                sortby "Path", a;         // sorts by path
      //          attrstamp("r", 1, "<xypaper>\FLATtest.pf.txt");             //  sets "readonly"
"remove selected from open paperfolder"  #776;
Only drawback - you have to remove files in folder as well as folder.
I've put in "remove" to show that when removing items you do need to see warning/note to be safe.
1st 3 lines and last line commented out may be useful if you want to have instant return of removed files/folders.
To return just left click on ribbon @ paper: > FLATtest.pf .
note. ".pf" I found useful with highend's portable file association

Code: Select all

*.pf.txt>::goto "paper:<pfaitem>";

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

Hello, that's really great. First of all thank you. I noticed that when I rename a file it is immediately thrown out of the paper folder. Can that be prevented?

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: branch view

Post by highend »

Eventually by setting this tweak (I didn't test it!):

PFAllowZombies=1

https://www.xyplorer.com/faq-topic.php?id=tweak
One of my scripts helped you out? Please donate via Paypal

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

Another question. Is it possible to get the indented view like in Branchview. For a better overview. And what does the script look like if I don't have to confirm the removal. So without warning.

7iben
Posts: 74
Joined: 04 Apr 2019 18:22

Re: branch view

Post by 7iben »

PFAllowZombies=1
Isn't optimal. The file is no longer removed, which is good. But the change (name change) should also be displayed in the paper folder.

mazot
Posts: 43
Joined: 20 Apr 2020 23:19

Re: branch view

Post by mazot »

I'm afraid at the moment there is no indenting (I wonder how easy would it be to code).
As for the warning there is a tweak.

Code: Select all

PFWarning=1
I've tried it but didn't seem to have any effect.

Post Reply