
ch.sbb.releasetrain.utils.file.FileUtil Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements;
* and to You under the Apache License, Version 2.0.
*/
package ch.sbb.releasetrain.utils.file;
/**
* Writing and Reading Files
*
* @author u203244 (Daniel Marthaler)
* @since 0.0.1, 2016
*/
public interface FileUtil {
boolean writeFile(String path, String content);
String readFileToString(String pathAndFile);
String readFileToStringFromClasspath(String pathAndFile);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy