Files icon indicating copy to clipboard operation
Files copied to clipboard

A nicer way to handle files & folders in Swift

Results 28 Files issues
Sort by recently updated
recently updated
newest added

I see no equivalent to FileManager's replaceItemAt (https://developer.apple.com/documentation/foundation/filemanager/2293212-replaceitemat). This is equivalent to linux `mv dir1/old_name dir2/new_name`. Is this possible? If not, could it be added? The use case is downloading...

For file named "Dots.in.place.of.spaces.txt", nameExcludingExtension should return "Dots.in.place.of.spaces" but instead returns "Dotsinplaceofspaces".

Hi While installing in the package getting the below error:- **error: dependency graph is unresolvable; found these conflicting requirements: Dependencies: https://github.com/JohnSundell/Files @ 4.1.1..

Since the Swift Package Manager is now integrated into Xcode, all of my open source projects will stop supporting CocoaPods + Carthage starting with their next major version, which for...

announcement

Hey @JohnSundell 👋 The Files 4.0 release looks great, lots a solid improvements. Those improvements, however, have broken some of the open PRs that myself and others have written. I'm...

Hello, yes, my English is still so bad. I recently tried to write a Cloud Document manager in Files, and I found that in a particular case, the loadModificationDate method...

Hi @JohnSundell , I'm enjoying the Files API and I'm glad I can help in any way. Even if my contributions are just discussion points that lead to potential pull...

Hi I have next code: guard let url = self.documentDirURL, let folder = try? Folder(path:url.path) else { return } DispatchQueue.global().async { folder.makeSubfolderSequence(recursive: true).forEach { folder in let list = folder.subfolders.filter({...