* @throws FileNotFoundException
* @throws IOException
*/
public static void saveBytesToFile(byte[] bytes, String location) throws FileNotFoundException, IOException {
HelperFile helperFile = new HelperFile(bytes, location);
helperFile.saveBytes();
}
/**
* Reads the given bytes into an array. The bytes must not exceed the array size limit of Integer.MAX_VALUE (which is
* 2^31 -1). This means you can only use this method with files under 2 gigabytes