File: Read and Write

The File: Read and Write library is basically JM-'s own version of C++'s <fstream>, and can be included in a JM- Project using: #incd .frnw

If something isn't clear about the syntax shown below, we recommend you to read the IDoLD, since it is cleaner and shorter than IDD.

.frnw's functions

Here's a list of every function included in the .frnw library:

  • fs.new{} Stands for 'filesystem.new' and can create files. (e.g. fs.new{"fileName.extension"};) or even (e.g. fs.new{>> "Path" << "fileName.extension"};)

  • fs.rnw{} Stands for 'filesystem.readandwrite' and can read, write and create files. (e.g. fs.rnw{destination << source};) or (e.g. fs.rnw{source << destination};)

Last updated