Problem renaming remote files (long winded)

Any questions? Need some help?
Post Reply
fade2gray
Posts: 1
Joined: 15 Feb 2015, 15:37

Problem renaming remote files (long winded)

Post by fade2gray »

Firstly, thank you for producing this utility. Secondly, any advice on the below please? :D

I have a USB drive attached to my router for sharing files on my local Windows Network.

There is no problem using the GUI or command line when renaming files on a local machine running windows.

Using these files as an example:
  • Friends s01e01.mkv
  • Friends s02e01.mkv
  • Suits s01e01.mkv
  • Suits s02e01.mkv
If I use filebot -rename "C:\TVSeries" --format "{n}\{'Season '+s}\{n} - {s00e00} - {t}" --db TheTVDB -non-strict on a local machine, I get this structure...

Code: Select all

C:\TVSeries
    Friends
        Season 1
            Friends - S01E01 - The One Where Monica Gets A Roommate.mkv
        Season 2
            Friends - S02E01 - The One With Ross's New Girlfriend.mkv 
    Suits
        Season 1
            Suits - S01E01 -Pilot.mkv
        Season 2
            Suits - S02E01 - She Knows.mkv
But if I use the same command for the USB drive, I get this...

Code: Select all

Z:\TVSeries
    Season 1
    Friends s01e01.mkv
    Friends s02e01.mkv
    Suits s01e01.mkv
    Suits s02e01.mkv
A single "Season 1" folder and no files renamed.

Output at command window...

Code: Select all

C:\Users\fade2gray>filebot -rename "Z:\TVSeries" --format "{n}\{'Season '+s}\{n} - {s00e00} - {t}" --db TheTVDB -non-strict
Rename episodes using [TheTVDB]
Auto-detected query: [Friends]
Fetching episode data for [Friends]
Fetching episode data for [Friends (2002)]
Fetching episode data for [Friends (1979)]
Fetching episode data for [Last Friends]
Fetching episode data for [Frog & Friends]
Auto-detected query: [Suits]
Fetching episode data for [Suits]
[MOVE] Rename [Z:\TVSeries\Friends s01e01.mkv] to [Friends\Season 1\Friends - S01E01 - The One Where Monica Gets A Roommate.mkv]
[MOVE] Failed to rename [Z:\TVSeries\Friends s01e01.mkv]
NoSuchFileException: Z:\TVSeries\Friends s01e01.mkv -> Z:\TVSeries\Friends\Season 1\Friends - S01E01 - The One Where Monica Gets A Roommate.mkv
java.nio.file.NoSuchFileException: Z:\TVSeries\Friends s01e01.mkv -> Z:\TVSeries\Friends\Season 1\Friends - S01E01 - The One Where Monica Gets A Roommate.mkv
        at net.filebot.util.FileUtilities.moveRename(FileUtilities.java:71)
        at net.filebot.StandardRenameAction$1.rename(StandardRenameAction.java:15)
        at net.filebot.cli.CmdlineOperations.renameAll(CmdlineOperations.java:637)
        at net.filebot.cli.CmdlineOperations.renameSeries(CmdlineOperations.java:251)
        at net.filebot.cli.CmdlineOperations.rename(CmdlineOperations.java:96)
        at net.filebot.cli.ArgumentProcessor.process(ArgumentProcessor.java:75)
        at net.filebot.Main.main(Main.java:169)
Failure (°_°)

Code: Select all

C:\Users\fade2gray>filebot -script fn:sysinfo
FileBot 4.5.6 (r2818)
JNA Native: 4.0.0
MediaInfo: MediaInfoLib - v0.7.69
7-Zip-JBinding: OK
chromaprint-tools: fpcalc version 1.1.0 (C:\Program Files\FileBot\fpcalc.exe)
Extended Attributes: DISABLED
Groovy Engine: 2.3.9
JRE: Java(TM) SE Runtime Environment 1.8.0_31
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 1 GB Max Memory / 16 MB Used Memory
OS: Windows 7 (amd64)
User avatar
rednoah
The Source
Posts: 23005
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Problem renaming remote files (long winded)

Post by rednoah »

Not sure, probably some obscure Windows issue. Make sure you're using NTFS on your external drives. Just works better.
:idea: Please read the FAQ and How to Request Help.
Post Reply