Skip to content

loadfile()

Maingron edited this page Apr 2, 2021 · 5 revisions

Load a file

Code

loadfile(path, requestattributes = 0);

Variables

  • path = Path of the desired file [String]
  • requestattributes = Returns only file attributes if true [Boolean]

Example

loadfile("C:/Documents and Settings/pi.txt");
loadfile("C:/Documents and Settings/pi.txt", 1);

Explanation

loadfile() allows you to load a file that's saved within IOfs. You can then manipulate the file and save it with savefile()

Clone this wiki locally