Opening a Folder in a New XYPlorer Instance

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
Brad At CNC_Auto
Posts: 2
Joined: 19 Mar 2026 22:02

Opening a Folder in a New XYPlorer Instance

Post by Brad At CNC_Auto »

I was previously using QTTabbar. Unfortunately, that utility is now bricked by recent changes made by Microsoft to Windows 11. (Removal of support for File Explorer Toolbars and related. :( )

The tabbed interface offered by XYPlorer is great and reproduces much of the functionality that I had with QTTabbar and then some.

What I am missing though is the ability to OPEN a selected folder in a NEW instance of XYPlorer and/or MOVE a TAB to a NEW instance of XYPlorer. By this I mean a completely NEW window. (QTTabbar even let one drag/tear a tab off and create a NEW instance of File Explorer.)

I understand that there is the second PANE, but there are many times when I need one or more completely separate views of other sets of tabs.

I have been unable to find a way to do this? (I have tried to search the forum, but...)

Is this currently possible, or should I submit this to the WISH LIST?

Thanks in advance...

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

Re: Opening a Folder in a New XYPlorer Instance

Post by highend »

Scripting is the way to do this...

To open the current selected folder:
run """<xy>"" /new ""<curitem>""";

To move a tab to a new instance, e.g.:

Code: Select all

    $id   = tab("get", "id");
    $path = tab("get", "path");
    tab("close", 0, , $id);
    run """<xy>"" /new ""$path""";
The tab script could e.g. be used with a custom event action (e.g. middle-click on tab)...
One of my scripts helped you out? Please donate via Paypal

Brad At CNC_Auto
Posts: 2
Joined: 19 Mar 2026 22:02

Re: Opening a Folder in a New XYPlorer Instance

Post by Brad At CNC_Auto »

Thank You HIGHEND!

Post Reply