This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#11682 - disktidy plugin does not clean custom files.
Attached to Project:
Rockbox
Opened by flan_suse (flan_suse) - Sunday, 17 October 2010, 06:42 GMT+2
Last edited by Robert Menes (RMenes379) - Sunday, 31 October 2010, 14:06 GMT+2
Opened by flan_suse (flan_suse) - Sunday, 17 October 2010, 06:42 GMT+2
Last edited by Robert Menes (RMenes379) - Sunday, 31 October 2010, 14:06 GMT+2
|
DetailsDaily build: r28294-101016
This disktidy plugin will not delete files that were added under "Other" when added as a custom entry. I edited disktidy.config and added a custom string that I wish to be cleaned out. Here is an example: # Disktidy config # When adding a new file, make sure its NOT enabled < ALL >: no < NONE >: no < Windows >: no desktop.ini: no Thumbs.db: no Recycled/: no $RECYCLE.BIN/: no System Volume Information/: no < Mac OSX >: no .Trashes/: no .DS_Store: no ._*: no < Linux/BSD >: no .Trash-*/: no .dolphinview: no .d3lphinview: no < Other >: no *.bmark: no As you can see, I want the plugin to clean out all of my bookmarks. In Rockbox, I enable the bottom entry. When I launch the cleaner, it says "0 files cleaned", and all my .bmark files remain untouched. |
This task depends upon
Closed by Robert Menes (RMenes379)
Sunday, 31 October 2010, 14:06 GMT+2
Reason for closing: Accepted
Additional comments about closing: Committed as r28414.
Sunday, 31 October 2010, 14:06 GMT+2
Reason for closing: Accepted
Additional comments about closing: Committed as r28414.
._*
.Trash-*/
Perhaps someone who knows the plugin better than me can have a look. I guess it wouldn't be too hard to implement support for * at the begining.
these will work.
*xyz
xyz*
xyz*/
these don't work
x*z
*xyz*
Maybe something like:
# Disktidy config
# When adding a new file, make sure its NOT enabled
# Use extreme caution with custom entries, as you could accidentally delete important files
also, updated the manual entry including the warning.