Posted by: rick.ca
« on: January 21, 2010, 11:43:18 pm »Quote
Well, I'm using the default set of regexpressions...
Perhaps, but you're not using a default set of file pathnames.
My regex have been modified, but I'm going to guess these two are unchanged:
(?i)^.*\\(?P<title>.*)\\VIDEO_TS\\.*\..*
(?i)^.*\\(?P<title>)(?P<year>(19|2\d)\d{2})\\VIDEO_TS\.IFO
If that's so, it seems the first won't match your Year, and the second won't match your \VIDEO_TS\ directory. You would need to use something like this instead:
(?i)^.*\\(?P<title>)(?P<year>(19|2\d)\d{2})\\VIDEO_TS\\.*\..*