net.dryuf.maven.plugin.csvlocalizer.FileUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dryuf-csv-localizer-maven-plugin Show documentation
Show all versions of dryuf-csv-localizer-maven-plugin Show documentation
Maven plugin for converting CSV files into localize files.
The newest version!
package net.dryuf.maven.plugin.csvlocalizer;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.Arrays;
public class FileUtil
{
public static void updateFile(File file, byte[] content) throws IOException
{
if (file.exists() && Arrays.equals(Files.readAllBytes(file.toPath()), content))
return;
Files.write(file.toPath(), content);
}
}