INTERACT FORUM

More => Old Versions => JRiver Media Center 31 for Windows => Topic started by: JIMV on December 09, 2023, 02:01:54 pm

Title: How does one stop the program from rejecting files with a large name?
Post by: JIMV on December 09, 2023, 02:01:54 pm
When I import to my music library I keep getting something that reads like 'file not imported as file name too large'.

Is it possible to change the default size to allow longer file names?
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: Matt on December 09, 2023, 03:17:16 pm
There's an option you can toggle for long filenames.
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: JIMV on December 09, 2023, 05:34:18 pm
where?
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: Matt on December 09, 2023, 05:43:33 pm
Options > General > Advanced > Support extra long filenames

There's a search.
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: JIMV on December 10, 2023, 04:31:51 pm
Sadly that did not help. It was already checked...
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: zybex on December 10, 2023, 04:35:19 pm
Please paste an example of a rejected filename including the full path.
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: whoareyou on December 10, 2023, 05:00:24 pm
Don't long names also need to be enabled in windows?
In group policies there is an option: Administrative Templates/System/System/FileSystem/Enable Win32 long paths

Not sure what the corresponding regedit key is for this


Title: Re: How does one stop the program from rejecting files with a large name?
Post by: Awesome Donkey on December 10, 2023, 05:14:34 pm
Not sure what the corresponding regedit key is for this

Code: [Select]
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem
There you find LongPathsEnabled and set it from 0 to 1 and that should do it. You can also open a command prompt or terminal as administrator and copy/paste the following to enable it...

Code: [Select]
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" /v LongPathsEnabled /d 1 /t REG_DWORD /f
And to disable it and reset back to the default...

Code: [Select]
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" /v LongPathsEnabled /d 0 /t REG_DWORD /f
Title: Re: How does one stop the program from rejecting files with a large name?
Post by: JIMV on December 12, 2023, 06:03:02 pm
Thank you all for your help. Alas, I do not understand half of what is posted. I can live with what I have.

Again, thank you.