Martin Pfundmair
Martin Pfundmair
The path always includes the actual item. So if you have a `folder` at a path `/folder` it will be `/folder/folder`. Equally a `file.md` at a path `/folder` will have...
i stumbled onto the same problem on one of my servers! Just like you described, the path is `/folder/file`, however the retrieved `NSURLPathKey` says `/folder/file/file`. On top of that, I...
Thanks for your reply. I see. file operations would probably a lot easier if there's a **override** and **append** option on the write method or some similar implementation. Otherwise, I...
Did you find a way around the libsmb2 limitation? edit: It seems like SEEK_END is in there but with limitations. https://github.com/sahlberg/libsmb2/blob/6db01380d882a0ca1e4100f285c18c9e06df5585/include/smb2/libsmb2.h#L739
I implemented a workaround for myself, getting the current filesize via `attributesOfItem(atPath:)` and using that as an offset for `pwrite(data:,offset:)`. If you have the time, maybe you can let me...
Hi @senojsitruc, sorry for the delayed answer. Essentially I'm opening the file handle with `O_RDWR | O_APPEND` (I have other checks before that, so no `O_CREAT`, but yours should probably...
Sorry to dig this up again, but it looks like this PR was forgotten? @yonaskolb I'm sure you're very busy and maintaining several os projects is taking a lot of...
I'd love for this to get implemented. Is anybody still maintaining this project?
It compiles just fine if you use the :git branch in your podfile as described in https://github.com/ViccAlexander/Chameleon#swift-3 In your workspace make sure that the `Swift Language Version` in Build Settings...
I believe this has similarity to https://github.com/yonaskolb/XcodeGen/issues/1118