1. This function was implemented half a year ago, but it is not perfect.
Half a year ago, in order to achieve the custom sorting of folders and add dividing lines, I wrote a script of about 4KB, which was implemented with PaperFolder.
I placed a file in the folder that needed sorting, such as "SortOrder.txt", and I right-clicked in the margin of the list, clicked on the first item, and the folder was sorted.
snap_screen_20191002091618.png
But I don't think it's perfect enough.
2. "Manual Sorting" seems to be a problem
For example, there are three folders:
Step 1: Download the software
Step 2: Set Tools|Customize List|Manual Sorting
Step 3: Move folder 222 to front of folder 111
Step 4: Open folder 111, then click the "Up" button to return to the previous directory.
Now folder 111 is in front of folder 222.
In fact, this is a very good function, and maybe many users will give up this function just like me.
3. It is not difficult to realize this function.
As we all know, in Explorer, there is "Desktop.ini" to achieve personalized functions, such as changing the folder icon.
XYplorer can also have "SortOrder.ini".
For example, the content in "SortOrder.ini" is as follows:
Code: Select all
222
- // Use '-' to increase the dividing line
111
333
Each time a folder is opened, XYplorer determines whether there is a "SortOrder.ini" file under the folder, and if so, execute the script "sortbylist".
snap_screen_20191002092016.png
1、这个功能半年前实现了,只是不完美
半年前,为了实现文件夹的自定义排序,以及增加分割线,我写了大概4KB的脚本,用PaperFolder实现了。
我在需要排序的文件夹中放了一个文件,例如“SortOrder.txt”,我在列表的空白处点击右键,点击第一项,文件夹就排序好了。
只是我觉得这样还不够完美。
2、“Manual Sorting”好像有点问题
例如,有3个文件夹:
第1步:下载软件
第2步:设置Tools|Customize List|Manual Sorting
第3步:移动文件夹222到文件夹111的前面
第4步:打开文件夹111,然后点击“Up”按钮返回上一级目录。
现在文件夹111在文件夹222的前面。
其实这是一个非常棒的功能,可能很多使用者会跟我一样放弃了这个功能。
3、实现这个功能不难
众所周知,在Explorer中有“Desktop.ini”,实现个性化的功能,比如更改文件夹的图标。
XYplorer也可以有“SortOrder.ini”。
例如“SortOrder.ini”中的内容是这样的:
每次打开文件夹的时候,XYplorer判断该文件夹下是否有“SortOrder.ini”文件,如果有的话,执行脚本“sortbylist”即可。