Favorites subfolders

Features wanted...
Post Reply
Rhywun
Posts: 37
Joined: 25 Oct 2006 16:40
Location: Brooklyn

Favorites subfolders

Post by Rhywun »

Is it possible to add subfolders within the list of favorite folders? So I can put groups of favorites in different categories.

nas8e9
Posts: 2232
Joined: 21 Jun 2008 14:50

Re: Favorites subfolders

Post by nas8e9 »

Rhywun wrote:Is it possible to add subfolders within the list of favorite folders? So I can put groups of favorites in different categories.
You could try the Catalog feature for now, which allows a single sublevel.

As for adding multiple levels to Favorites, I'm not sure how easy that would be given that the Manage List interface which is used for many things, would also need support added. Also, at a certain point things like the Mini-Tree as well as the Catalog seem more suitable to manage a huge folder list.

j_c_hallgren
XY Blog Master
Posts: 5826
Joined: 02 Jan 2006 19:34
Location: So. Chatham MA/Clearwater FL
Contact:

Re: Favorites subfolders

Post by j_c_hallgren »

nas8e9 wrote:
Rhywun wrote:Is it possible to add subfolders within the list of favorite folders? So I can put groups of favorites in different categories.
You could try the Catalog feature for now, which allows a single sublevel.
And don't forget that Catalog switching might be a solution to this as well:
http://www.xyplorer.com/release_9.70.htm#switchcatalogs
Still spending WAY TOO much time here! But it's such a pleasure helping XY be a treasure!
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.

zer0
Posts: 2676
Joined: 19 Jan 2009 20:11

Re: Favorites subfolders

Post by zer0 »

In addition, the roadmap -- link in my signature -- mentions workspaces that will allow you to group tabs. This is not too dissimilar from having groups of favourite folders.
Reporting a bug? Have a wish? Got a question? Use search - View roadmap - FAQs: Forum + XY site
Windows 7/10
Always using the latest stable two-decimal build

Rhywun
Posts: 37
Joined: 25 Oct 2006 16:40
Location: Brooklyn

Re: Favorites subfolders

Post by Rhywun »

All the alternatives seem to clutter up the interface not to mention bypass the Favorites functionality that's already there. I think the UI for editing favorite folders could easily handle this functionality by, say, using indentation or some sort of prefixed symbol to indicate items in a subfolder.

I don't have a "huge" folder list... but I have a few projects where I want to group some shortcuts together so they don't clutter up the list.

zer0
Posts: 2676
Joined: 19 Jan 2009 20:11

Re: Favorites subfolders

Post by zer0 »

Rhywun wrote:All the alternatives seem to clutter up the interface not to mention bypass the Favorites functionality that's already there. I think the UI for editing favorite folders could easily handle this functionality by, say, using indentation or some sort of prefixed symbol to indicate items in a subfolder.

I don't have a "huge" folder list... but I have a few projects where I want to group some shortcuts together so they don't clutter up the list.
What you can potentially do -- and yes, it does bypass the existing functionality -- is have a TB that features categories with child goto commands with destinations.
Reporting a bug? Have a wish? Got a question? Use search - View roadmap - FAQs: Forum + XY site
Windows 7/10
Always using the latest stable two-decimal build

LittleBiG
Posts: 1848
Joined: 08 Apr 2011 12:57
Location: Win10x64

Re: Favorites subfolders

Post by LittleBiG »

I had too many items in the Favorite Folders, so I had to create something like Favorite subfolders. My solution is:

I added "groups" to my favorite folder in this way, and a last line for the easy access:

Code: Select all

"FIRST GROUP...|<xyicons>\Scraps\Folder Add-01.ico" ::load "<xyscripts>\Fav_First"
"SECOND GROUP...|<xyicons>\Scraps\Folder Add-01.ico" :: load "<xyscripts>\Fav_Second"
"MISC...|<xyicons>\Scraps\Folder Add-01.ico" :: load "<xyscripts>\Fav_Misc"
-
"Manage Favorite Folders" ::#612
The Fav files (here: Fav_First.xys, Fav_Second.xys, Fav_Misc.xys) contain the actual favorite folders and a few lines for the easy maintenance and closing:

Code: Select all

"Windows Temp" C:\Users\b\AppData\Local\Temp\
"Downloads" C:\Downloads\
//end
"-"
"Add current folder to this group" ::writefile(self("file"),replace(readfile(self("file")),'//'.'end','"' . <curfolder> . '" ' . <curpath> . <crlf> . '//'.'end'),"o")
"Modify this group" ::open self("file")
"Close" ::break
If you'd like a Back to groups possibility, add this to the xys files:

Code: Select all

"Back" ::button favs
I use this whole bunch from the right-click in the white space of the tree, I think it is the easiest way.

Post Reply