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 calledload
andsave
,and offer
high-level support for formatted files (in contrast with julia's
low-levelread
andwrite
). To avoid name conflicts, packages that
provide support for standard file formats through functions named
load
andsave
are encouraged to register with FileIO.
You can get an API overview by typing?FileIO
at 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.