All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.util.misc.FileUtil Maven / Gradle / Ivy

The newest version!
package com.vladsch.flexmark.util.misc;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import org.jetbrains.annotations.NotNull;

public class FileUtil {
  @NotNull
  public static byte[] getFileContentBytesWithExceptions(File receiver) throws IOException {
    return Files.readAllBytes(receiver.toPath());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy