Unable to modify the files/folders, do we need to handle anything special for macOS 26 (Tahoe) with Fuse 5.0.6? #1109
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Hi, How did you implement the rename? I remember I had tons of problems, as High-Level apps, use Rename with this flag: RENAME_SWAP see and this discussion: I also had one on apple developer forum, but I lost it. In short, if you use Mac Apps, on each save they call rename with swap flag, they expect the Inode to be the same, but the swap to happen. Hope it helps. |
Beta Was this translation helpful? Give feedback.
-
|
The issue occurred due to a change in the move callback method signature. In version 4.8.3, the implementation was: - (BOOL)moveItemAtPath:(NSString *)path
toPath:(NSString *)otherPath
error:(NSError * _Nullable * _Nonnull)error In version 5.0.6, it was updated to: - (BOOL)moveItemAtPath:(NSString *)path
toPath:(NSString *)otherPath
options:(GMUserFileSystemMoveOption)options
error:(NSError * _Nullable * _Nonnull)errorIf the new move callback is not implemented, renaming operations fail with a "Permission denied" error. Implementing the updated method resolved the issue. Thanks for the support! |
Beta Was this translation helpful? Give feedback.

The issue occurred due to a change in the move callback method signature.
In version 4.8.3, the implementation was:
In version 5.0.6, it was updated to:
If the new move callback is not implemented, renaming operations fail with a "Permission denied" error.
Implementing the updated method resolved the issue.
Thanks for the support!