🎨 macOS 端对工作空间放置在 iCloud 路径下做检查 https://github.com/siyuan-note/siyuan/issues/7747

This commit is contained in:
Liang Ding 2023-03-23 09:05:51 +08:00
parent c8ae0a360f
commit 3f9d32d6ff
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -263,10 +263,6 @@ func isICloudPath(absPath string) bool {
iCloudRoot := filepath.Join(HomeDir, "Library", "Mobile Documents")
err := WalkWithSymlinks(iCloudRoot, func(path string, info os.FileInfo, err error) error {
if nil != err {
return err
}
logging.LogInfof("path: %s", path)
return nil
})