Author Topic: File import from harddisk only with pathnames in movielist  (Read 4614 times)

0 Members and 1 Guest are viewing this topic.

Offline jacky_no1

  • Member
  • *
  • Posts: 2
    • View Profile
File import from harddisk only with pathnames in movielist
« 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

Hope someone could help me.
« Last Edit: January 22, 2013, 04:35:46 pm by jacky_no1 »

Offline rick.ca

  • Global Moderator
  • *****
  • Posts: 3241
  • "I'm willing to shoot you!"
    • View Profile
Re: File import from harddisk only with pathnames in movielist
« Reply #1 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}.


Offline jacky_no1

  • Member
  • *
  • Posts: 2
    • View Profile
Re: File import from harddisk only with pathnames in movielist
« Reply #2 on: January 23, 2013, 09:00:32 am »
It works!  :D
Thank you!