예제 #1
0
 /**
  * Gets a FileWriter for the config file
  *
  * @return A {@link FileWriter} for the config file
  * @throws IOException
  */
 public StreamWriter GetConfigWriter()
 {
     return(FileHelper.GetWriter(FileHelper.GetAwsDirectory(), "config"));
 }
예제 #2
0
 /**
  * Gets a reader for the config file. If the file doesn't exist, it creates it
  *
  * @return A {@link Reader} for the config file
  * @throws IOException
  */
 public StreamReader GetConfigReader()
 {
     return(FileHelper.GetReader(FileHelper.GetAwsDirectory(), "config"));
 }