diff --git a/kernel/util/working.go b/kernel/util/working.go index eb8719f2c..781830c35 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -189,11 +189,11 @@ func initWorkspaceDir(workspaceArg string) { } } - defaultWorkspaceDir := filepath.Join(HomeDir, "Documents", "SiYuan") + defaultWorkspaceDir := filepath.Join(HomeDir, "SiYuan") if gulu.OS.IsWindows() { // 改进 Windows 端默认工作空间路径 https://github.com/siyuan-note/siyuan/issues/5622 if userProfile := os.Getenv("USERPROFILE"); "" != userProfile { - defaultWorkspaceDir = filepath.Join(userProfile, "Documents", "SiYuan") + defaultWorkspaceDir = filepath.Join(userProfile, "SiYuan") } }