com.sportradar.mts.sdk.api.utils.FileUtils Maven / Gradle / Ivy
/*
* Copyright (C) Sportradar AG. See LICENSE for full license governing this code
*/
package com.sportradar.mts.sdk.api.utils;
import java.io.*;
public final class FileUtils {
private FileUtils() { throw new IllegalStateException("FileUtils class"); }
public static InputStream filePathAsInputStream(String path) throws IOException {
File file = new File(path);
if (!file.exists() && !file.isDirectory()) {
throw new FileNotFoundException(StringUtils.format("File {} not found", path));
}
return new FileInputStream(file);
}
}