File: Read and Write
Syntax & Examples
// fs.new{} Stands for 'FileSystem.New'
// Used to create files
// Syntax (spaced): fs.new{ >> "<path>" << "<fileName>.<fileExtension>" };
#incd .frnw
fs.new{>> "~/" << "README.md"};// fs.rnw{} Stands for 'FileSystem.ReadAndWrite'
// Used to read, write and create files
// Syntax (spaced): fs.rnw{"<sourcePath>" << "<destinationPath>"};
#incd .frnw
fs.rnw{"~/README.md" << "/tmp/README.md"};Last updated