├── .gitignore ├── .swiftlint.yml ├── Dschee-FileKit.podspec ├── FileKit.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ └── contents.xcworkspacedata ├── FileKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── FileKit-OSX.xcscheme │ ├── FileKit-iOS.xcscheme │ ├── FileKit-tvOS.xcscheme │ ├── FileKit-watchOS.xcscheme │ └── FileKitTests.xcscheme ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources ├── ArrayFile.swift ├── DataFile.swift ├── DataType.swift ├── DictionaryFile.swift ├── DirectoryEnumerator.swift ├── DispatchEvent.swift ├── DispatchWatcher.swift ├── File.swift ├── FileKit.swift ├── FileKitError.swift ├── FilePermissions.swift ├── FileProtection.swift ├── FileSystemEvent.swift ├── FileSystemEventStream.swift ├── FileSystemWatcher.swift ├── FileType.swift ├── Image+FileKit.swift ├── ImageFile.swift ├── NSArray+FileKit.swift ├── NSBundle+FileKit.swift ├── NSData+FileKit.swift ├── NSDictionary+FileKit.swift ├── NSString+FileKit.swift ├── Operators.swift ├── Path.swift ├── Process+FileKit.swift ├── RelativePathType.swift ├── String+FileKit.swift └── TextFile.swift ├── Support └── Info.plist └── Tests ├── Date+FileKit.swift ├── FileKitTests.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Dschee-FileKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Dschee-FileKit.podspec -------------------------------------------------------------------------------- /FileKit.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.playground/Contents.swift -------------------------------------------------------------------------------- /FileKit.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.playground/contents.xcplayground -------------------------------------------------------------------------------- /FileKit.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FileKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FileKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-OSX.xcscheme -------------------------------------------------------------------------------- /FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-iOS.xcscheme -------------------------------------------------------------------------------- /FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-tvOS.xcscheme -------------------------------------------------------------------------------- /FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/xcshareddata/xcschemes/FileKit-watchOS.xcscheme -------------------------------------------------------------------------------- /FileKit.xcodeproj/xcshareddata/xcschemes/FileKitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/FileKit.xcodeproj/xcshareddata/xcschemes/FileKitTests.xcscheme -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ArrayFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/ArrayFile.swift -------------------------------------------------------------------------------- /Sources/DataFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DataFile.swift -------------------------------------------------------------------------------- /Sources/DataType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DataType.swift -------------------------------------------------------------------------------- /Sources/DictionaryFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DictionaryFile.swift -------------------------------------------------------------------------------- /Sources/DirectoryEnumerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DirectoryEnumerator.swift -------------------------------------------------------------------------------- /Sources/DispatchEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DispatchEvent.swift -------------------------------------------------------------------------------- /Sources/DispatchWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/DispatchWatcher.swift -------------------------------------------------------------------------------- /Sources/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/File.swift -------------------------------------------------------------------------------- /Sources/FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileKit.swift -------------------------------------------------------------------------------- /Sources/FileKitError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileKitError.swift -------------------------------------------------------------------------------- /Sources/FilePermissions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FilePermissions.swift -------------------------------------------------------------------------------- /Sources/FileProtection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileProtection.swift -------------------------------------------------------------------------------- /Sources/FileSystemEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileSystemEvent.swift -------------------------------------------------------------------------------- /Sources/FileSystemEventStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileSystemEventStream.swift -------------------------------------------------------------------------------- /Sources/FileSystemWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileSystemWatcher.swift -------------------------------------------------------------------------------- /Sources/FileType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/FileType.swift -------------------------------------------------------------------------------- /Sources/Image+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/Image+FileKit.swift -------------------------------------------------------------------------------- /Sources/ImageFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/ImageFile.swift -------------------------------------------------------------------------------- /Sources/NSArray+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/NSArray+FileKit.swift -------------------------------------------------------------------------------- /Sources/NSBundle+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/NSBundle+FileKit.swift -------------------------------------------------------------------------------- /Sources/NSData+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/NSData+FileKit.swift -------------------------------------------------------------------------------- /Sources/NSDictionary+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/NSDictionary+FileKit.swift -------------------------------------------------------------------------------- /Sources/NSString+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/NSString+FileKit.swift -------------------------------------------------------------------------------- /Sources/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/Operators.swift -------------------------------------------------------------------------------- /Sources/Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/Path.swift -------------------------------------------------------------------------------- /Sources/Process+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/Process+FileKit.swift -------------------------------------------------------------------------------- /Sources/RelativePathType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/RelativePathType.swift -------------------------------------------------------------------------------- /Sources/String+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/String+FileKit.swift -------------------------------------------------------------------------------- /Sources/TextFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Sources/TextFile.swift -------------------------------------------------------------------------------- /Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Support/Info.plist -------------------------------------------------------------------------------- /Tests/Date+FileKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Tests/Date+FileKit.swift -------------------------------------------------------------------------------- /Tests/FileKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Tests/FileKitTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeehut/FileKit/HEAD/Tests/Info.plist --------------------------------------------------------------------------------