Kodi Community Forum

Full Version: [Advancedsettings.xml] [excludefromscan] Help with excluding subpack folder.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, i need som help with <excludefromscan> and <excludetvshowsfromscan>.
Anyone got a working .xml going that excludes subpack folders that are named like tv show episodes?

Example:
Code:
15:12:14 T:2896149312   ERROR: GetDirectory - Error getting rar://rar://smb://Boardwalk_Empire/Boardwalk.Empire.S02.720p.HDTV.x264/Boardwalk.Empire.S02.SUBPACK.720p.BluRay.X264-REWARD/boardwalk.empire.s02.subpack.720p.bluray.x264-reward.rar%2fBoardwalk.Empire.S02E12.720p.BluRay.X264-REWARD.rar

I have tried with:
Code:
<excludefromscan>
<regexp>(?i)subpack</regexp>
</excludefromscan>
and
Code:
<excludefromscan>
<regexp>[!-._ \\/](?i)subpack[-._ \\/]</regexp>
</excludefromscan>

and i get nothing.. Any ideas?
I've been trying to find a fix for this problem for over a year now..

Unfortunately, the only "solutions" I've been able to find is to either unpack the subpack or move it somewhere that XBMC doesn't scan.
Try
Code:
<excludefromscan>
   <regexp>/subpack/</regexp>
<excludefromscan>
(2014-01-28, 00:41)un1versal Wrote: [ -> ]Try
Code:
<excludefromscan>
   <regexp>/subpack/</regexp>
<excludefromscan>

I tried this, but unfortunately it didnt work. Any other ideas?