2024-10-12, 06:15 PM
Hello Jellyfin Community,
I'm currently experiencing an issue with my portable Jellyfin installation on Windows. I’ve set up a batch file to start Jellyfin using the following command:
However, as shown in the images I’ve provided, Jellyfin seems to be creating and storing metadata, library files, and other related data in
I suspect this might be due to the space in the directory name (
My Questions:
1. Would enclosing the path in quotes "" fix the issue where Jellyfin incorrectly sets the metadata/library paths?
2. If this doesn't solve the problem, what might I be doing wrong, and what can I do to ensure that Jellyfin is properly saving everything in the intended
I'm using Jellyfin version 10.9.11, and I’m running the portable version on a Windows system.
Any help or suggestions on resolving this would be greatly appreciated!
Thank you in advance.
I'm currently experiencing an issue with my portable Jellyfin installation on Windows. I’ve set up a batch file to start Jellyfin using the following command:
Code:
system\jellyfin.exe -d E:\Program Files\Jellyfin v10.9.11\jellyfin\database
pause
However, as shown in the images I’ve provided, Jellyfin seems to be creating and storing metadata, library files, and other related data in
E:/Program/
instead of the intended E:/Program Files/
. I suspect this might be due to the space in the directory name (
Program Files
) and the overall length of the path. After doing some research, I believe that enclosing the path in double quotes might resolve the issue. So, I modified the batch file to this:Code:
system\jellyfin.exe -d "E:\Program Files\Jellyfin v10.9.11\jellyfin\database"
pause
My Questions:
1. Would enclosing the path in quotes "" fix the issue where Jellyfin incorrectly sets the metadata/library paths?
2. If this doesn't solve the problem, what might I be doing wrong, and what can I do to ensure that Jellyfin is properly saving everything in the intended
E:/Program Files/
directory?I'm using Jellyfin version 10.9.11, and I’m running the portable version on a Windows system.
Any help or suggestions on resolving this would be greatly appreciated!
Thank you in advance.