A native Swift library to read and write custom file formats
FileFormatCore is asupport library to implement reading and writing custom file formats in pure swift
FileFormatCore consists of two modules
- FileReader : Read files from disk to memory
- FileWriter : Write files from memory to disk
The following projects are based on this project:
CSVCore |
ISOBMFFCore | HEIFCore |
Planned
FITSCore |
With the swift package manager, add the library to your dependencies
dependencies: [
.package(url: "https://github.com/brampf/fileformatcore.git", from: "0.0.3")
]
then simply add the FileReader
import to your target for the parser
.target(name: "YourApp", dependencies: ["FileReader"])
MIT license; see LICENSE. (c) 2021