From 4f1fc1a84eab8b43c448ad7775ac27ad809e9aae Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Wed, 9 Apr 2025 11:58:37 +1000 Subject: [PATCH] iclouddrive: fix so created files are writable At present any created file (eg through the touch command, copy, mount etc) is read-only in iCloud. This has been reported by users at https://forum.rclone.org/t/icloud-and-file-editing-permissions/50659. --- backend/iclouddrive/api/drive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/iclouddrive/api/drive.go b/backend/iclouddrive/api/drive.go index 653fad597..3bee22e24 100644 --- a/backend/iclouddrive/api/drive.go +++ b/backend/iclouddrive/api/drive.go @@ -631,7 +631,7 @@ func NewUpdateFileInfo() UpdateFileInfo { FileFlags: FileFlags{ IsExecutable: true, IsHidden: false, - IsWritable: false, + IsWritable: true, }, } }