The filename, directory name, or volume label syntax is incorrect
The filename, directory name, or volume label syntax is incorrect
Im not sure what im doing wrong but i have tried using others scripts and i cant get it to do what i want
I have a ton of movies that i wanna rename that i would like for it to be in this format
Movie Folder (Year of movie) -----> Movie.ext
I have a folder setup to rename my movies as such
main folder - _MoviesUnfinished
inside main folder i have 2 folders - NeedsRenamed and DoneRenamed
basically what i would like to do is put all the movies i wanna rename in the NeedsRenamed folder and after they have been renamed to move them to the DoneRenamed folder.
Like i said i have tried to use other scripts and it will search for movie but come back with something like no changes made or something to that effect.
I have looked through several forums trying to figure this out on my own and watched several youtube videos to learn this new process that i came across. Any help would be much appreciated.
Thanks in advance for the help.
I have a ton of movies that i wanna rename that i would like for it to be in this format
Movie Folder (Year of movie) -----> Movie.ext
I have a folder setup to rename my movies as such
main folder - _MoviesUnfinished
inside main folder i have 2 folders - NeedsRenamed and DoneRenamed
basically what i would like to do is put all the movies i wanna rename in the NeedsRenamed folder and after they have been renamed to move them to the DoneRenamed folder.
Like i said i have tried to use other scripts and it will search for movie but come back with something like no changes made or something to that effect.
I have looked through several forums trying to figure this out on my own and watched several youtube videos to learn this new process that i came across. Any help would be much appreciated.
Thanks in advance for the help.
Re: I need help with naming movies with AMC
Please post the command and the console output, so that we can see what you're trying to do, and what filebot is doing or not doing.
Please read How to Request Help.

Re: I need help with naming movies with AMC
the script i was using was at least finding the movie but now its not. Basically i just wanna put a handful of movies in the Needsrenamed folder and it rename and put in the DoneRenamed folder. In this format Folder 2020/Movie.ext
here is my info

Thanks for the help
here is my info
Code: Select all
filebot -script fn:amc --output B:/_MoviesUnfinished/NeedsRenamed/" --action test -non-strict "B:/_MoviesUnfinished/DoneRenamed" --log-file amc.log --def excludeList=amc.txt
Thanks for the help
Re: The filename, directory name, or volume label syntax is incorrect
That’s all I have I took a screenshot of the page and that’s all I have for script sorry
Re: The filename, directory name, or volume label syntax is incorrect
NO:
YES:
You may prefer to use the GUI if this doesn't make immediate sense. If you're new to the command-line, then there will be a steep learning curve, and you will have to spend a lot of time learning new things with trial and error. Personally, I'd just stick to the GUI for ease of use and getting things done. 
Code: Select all
--output B:/_MoviesUnfinished/NeedsRenamed/"
Code: Select all
--output "B:/_MoviesUnfinished/NeedsRenamed"


Re: The filename, directory name, or volume label syntax is incorrect
ok lets try this again i see what i messed up.

Code: Select all
filebot -script fn:amc --output "B:/_MoviesUnfinished/DoneRenamed/" --action test -non-strict "B:/_MoviesUnfinished/NeedsRenamed" --log-file amc.log --def excludeList=amc.txt
Re: The filename, directory name, or volume label syntax is incorrect
Looks good to me. Since you're using --action TEST to do a dry run to see if it would work, no files are actually be renamed. The console output does tell us that it would work just fine, so let's do --action MOVE (default unless specified otherwise) to actually move / rename files.
Re: The filename, directory name, or volume label syntax is incorrect
ok yeah thanks looks like that worked it renamed the movie Folder (year)/Movie (year) how would i change it to take the year off movie and make it just be Folder (year)/Movie?
also when i just tried to rename a movie it renamed it as a TV show episode, is there a way to force it to either name only movies or tv shows?
Thanks
also when i just tried to rename a movie it renamed it as a TV show episode, is there a way to force it to either name only movies or tv shows?
Thanks
Re: The filename, directory name, or volume label syntax is incorrect
Please read the amc script manual for details on how to use custom formats and forcing TV or Movie mode.
Re: The filename, directory name, or volume label syntax is incorrect
thanks for the help i believe i figured it out and it seems to be working.