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

org.apache.hadoop.fs.Path Maven / Gradle / Ivy

Go to download

A lightweight Java library that facilitates reading and writing Apache Parquet files without Hadoop dependencies.

There is a newer version: 1.50
Show newest version
package org.apache.hadoop.fs;

import org.apache.hadoop.conf.Configuration;

import java.io.File;

public class Path {

    private final File file;

    public Path(String path) {
        file = new File(path);
    }

    public FileSystem getFileSystem(Configuration conf) {
        return new FileSystem();
    }

    public File file() {
        return file;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy