Félix Fischer
Félix Fischer
> Both PathKit and Files provide a better API to handle paths and their contents. Indeed! I'd forgotten about them. They look pretty great! `Files` passes every test on my...
It's sad to see one of your projects go. But you have your reasons. If at any time you'd like to re-take it, count on me to test it on...
> For example, one is because the underlying function used for delete (isDeletableFile(atPath:)) is (perhaps was) unimplemented: It [still is unimplemented u.u](https://github.com/apple/swift-corelibs-foundation/blob/6c54c84c9e8f8e39b7556e5eb68f837cdb8824dc/Foundation/FileManager.swift#L725) > I believe the only place in PathKit...
Btw, I found why these two tests fail: Sort of. ```swift $0.it("throws an error on failure writing data") { #if os(Linux) throw skip() #else let path = Path("/") let data...
I think [this](https://github.com/apple/swift-corelibs-foundation/blob/6c54c84c9e8f8e39b7556e5eb68f837cdb8824dc/Foundation/NSStringAPI.swift#L1843) might be the problem. It would be weird, though, because all other paths seem to work just fine. And they are all `NSString`s as far as I...
I found the bug. I'm gonna file a thing. Here it is: 1. `standardizingPath` exists somewhere else. [Here, in particular](https://github.com/apple/swift-corelibs-foundation/blob/master/Foundation/NSPathUtilities.swift#L304). I think that's the version being used here in `PathKit`....
Continuation: [posted it to JIRA](https://bugs.swift.org/browse/SR-7526). Currently trying to compile my changes to Foundation in order to confirm my theory and make a PR. ### The last 2 tests For the...
## Summary There are 6 tests that are being skipped on non-Darwin platforms. 1. _Describe_: `"symlinking"`, _It_: `"can create a relative symlink in the same directory"`: fails because there's missing...
Fixed it at https://github.com/apple/swift-corelibs-foundation/pull/1536
Update on this list: second skipping test may be able to pass [soon](https://forums.swift.org/t/swiftfoundation-filemanager-isdeletablefile-implementation/13465?u=felix91gr) if all goes well for the writer of that post. Success there would leave PathKit with only...