From 30813961adc3dfe6a0ad07cad2fc0b45e95bc6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E8=AF=9A?= Date: Wed, 19 Mar 2025 15:21:29 +0800 Subject: [PATCH] Update file permission setting in ChineseNfoRegistry to allow full access --- src/Service/Jobs/ChineseNfoRegistry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/Jobs/ChineseNfoRegistry.cs b/src/Service/Jobs/ChineseNfoRegistry.cs index 3b428b7..74a6535 100644 --- a/src/Service/Jobs/ChineseNfoRegistry.cs +++ b/src/Service/Jobs/ChineseNfoRegistry.cs @@ -65,7 +65,7 @@ public class ChineseNfoRegistry : Registry, IChineseNfoRegistry var skippedCount = 0; // 使用 root 角色执行 chmod -R 666 设置全部文件的读写权限 - var permission = new ProcessStartInfo("chmod", "-R 666 " + tvFolder) + var permission = new ProcessStartInfo("chmod", "-R 777 " + tvFolder) { CreateNoWindow = true, UseShellExecute = false