Skip to content

Main Package for IO, loading all different kind of files

License

Notifications You must be signed in to change notification settings

JuliaIO/FileIO.jl

Repository files navigation

FileIO

Build status codecov

FileIO.jl

FileIO aims to provide a common framework for detecting file formats and dispatching to appropriate readers/writers. The two core functions in this package are calledloadandsave,and offer high-level support for formatted files (in contrast with julia's low-levelreadandwrite). To avoid name conflicts, packages that provide support for standard file formats through functions named loadandsaveare encouraged to register with FileIO.

Help

You can get an API overview by typing?FileIOat the REPL prompt. Individual functions have their own help too, e.g.,?add_format.

For more detailed help, including information about how you can add support for additional file formats, see thedocumentation.