Personal Video Database

English => Support => Topic started by: jacky_no1 on January 22, 2013, 12:23:11 pm

Title: File import from harddisk only with pathnames in movielist
Post by: jacky_no1 on January 22, 2013, 12:23:11 pm
When i import films from files in Folders from harddisk then i get the complete path as the film name.
Example:
Find new Films in Folders
Filename is: "Transporter 3.avi"
Import name is: "M:\Video\T-V\Transporter 3"

Why did he add the complete path to the file name?
So i could not find the films with zelluloid plugin.
Films importet in the past where OK.

I did not found the answer in the forum.
Here is a picture from the Film Names List:
http://s7.directupload.net/file/d/3125/ke2q2fr9_jpg.htm (http://s7.directupload.net/file/d/3125/ke2q2fr9_jpg.htm)

Hope someone could help me.
Title: Re: File import from harddisk only with pathnames in movielist
Post by: rick.ca on January 23, 2013, 03:01:59 am
The file path is parsed to field values based on the regex included in your File Scanner configuration. The first regex in the list that matches the file path is used. In this case, you must have one that matches the entire path except for the extension to [Title]. The error might be as simple as .*\\ (meaning "any number of any character until '\'") missing from...

(?i)^.*\\(?P<title>.*)\..{3,4}.

Title: Re: File import from harddisk only with pathnames in movielist
Post by: jacky_no1 on January 23, 2013, 09:00:32 am
It works!  :D
Thank you!