Esempio n. 1
0
 /**
  * Opens the specified file and writes the specified string as the files contents
  *
  * @param FileName The target file
  * @param Contents The contents to write to the file
  * @return True if success, false otherwise
  */
 protected final boolean write(String FileName, String Contents) {
   return FileImp.write(FileName, Contents);
 }
Esempio n. 2
0
 /**
  * Reads the contents of the specified file name
  *
  * @param FileName The location of the specified file.
  * @return Contents of the file.
  */
 protected final String read(String FileName) {
   return FileImp.read(FileName);
 }