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

com.github.leeonky.dal.extensions.basic.file.Methods Maven / Gradle / Ivy

There is a newer version: 0.7.4
Show newest version
package com.github.leeonky.dal.extensions.basic.file;

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Methods {
    public static File file(String path) {
        return Paths.get(path).toFile();
    }

    public static Path path(String path) {
        return Paths.get(path);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy