/** * 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")); }
/** * 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")); }