Kodi Community Forum
Transitioning from EMM - Questions - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+---- Forum: TinyMediaManager (https://forum.kodi.tv/forumdisplay.php?fid=204)
+---- Thread: Transitioning from EMM - Questions (/showthread.php?tid=345149)



Transitioning from EMM - Questions - Arokhaerr - 2019-07-04

Hi there everyone. Smile

I transition from EMM to TMM and am trying to remove "old" clutter I never really used, like for example the .actors folders on my nas. Now I noticed TMM can remove many unused files with the renaming feature, but those .actors and extrafanart folders remain.

Is there any option to also remove those? I barely use these and would like to keep my storage clean.

I tried bulk removing them with the linux command

Code:
rm -R .actors

but this does not help because its directories and not files. :/
Now I am no linux guru and am afraid I could wipe my movies trying more. Is there any specific command or option inside TMM that recursively removes only those folders and all images inside them?


RE: Transitioning from EMM - Questions - myron - 2019-07-05

No, TMM won't do this for you.
To prgram that takes hours, and just entering a linux command just seconds Wink

Try this: https://www.cyberciti.biz/faq/how-to-find-and-delete-directory-recursively-on-linux-or-unix-like-system/
Try the "find" command first w/o the -exec parameter Wink


RE: Transitioning from EMM - Questions - Arokhaerr - 2019-07-07

Thank you, I didnt know about the find command. Smile