Class Path

Object
io.delta.kernel.internal.fs.Path
All Implemented Interfaces:
ObjectInputValidation, Serializable, Comparable<Path>

public class Path extends Object implements Comparable<Path>, Serializable, ObjectInputValidation
Names a file or directory in a FileSystem. Path strings use slash as the directory separator.

Taken from https://github.com/apache/hadoop/blob/branch-3.3 .4/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/Path.java

See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The current directory, ".".
    static final String
    The directory separator, a slash.
    static final char
    The directory separator, a slash, as a character.
    static final boolean
    Whether the current host is a Windows machine.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Path(Path parent, Path child)
    Create a new Path based on the child path resolved against the parent path.
    Path(Path parent, String child)
    Create a new Path based on the child path resolved against the parent path.
    Path(String pathString)
    Construct a path from a String.
    Path(String parent, Path child)
    Create a new Path based on the child path resolved against the parent path.
    Path(String parent, String child)
    Create a new Path based on the child path resolved against the parent path.
    Path(String scheme, String authority, String path)
    Construct a Path from components.
    Path(URI aUri)
    Construct a path from a URI
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
    boolean
     
    Returns the final component of this path.
    static String
    getName(String pathString)
     
    Returns the parent of a path or null if at root.
    int
     
    boolean
    Returns true if the path component (i.e.
    boolean
    Returns true if and only if this path represents the root of a file system.
    boolean
    Returns true if the path component (i.e.
     
    Convert this Path to a URI.
    void
    Validate the contents of a deserialized Path, so as to defend against malicious object streams.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • SEPARATOR

      public static final String SEPARATOR
      The directory separator, a slash.
      See Also:
    • SEPARATOR_CHAR

      public static final char SEPARATOR_CHAR
      The directory separator, a slash, as a character.
      See Also:
    • CUR_DIR

      public static final String CUR_DIR
      The current directory, ".".
      See Also:
    • WINDOWS

      public static final boolean WINDOWS
      Whether the current host is a Windows machine.
  • Constructor Details

    • Path

      public Path(String parent, String child)
      Create a new Path based on the child path resolved against the parent path.
      Parameters:
      parent - the parent path
      child - the child path
    • Path

      public Path(Path parent, String child)
      Create a new Path based on the child path resolved against the parent path.
      Parameters:
      parent - the parent path
      child - the child path
    • Path

      public Path(String parent, Path child)
      Create a new Path based on the child path resolved against the parent path.
      Parameters:
      parent - the parent path
      child - the child path
    • Path

      public Path(Path parent, Path child)
      Create a new Path based on the child path resolved against the parent path.
      Parameters:
      parent - the parent path
      child - the child path
    • Path

      public Path(String pathString) throws IllegalArgumentException
      Construct a path from a String. Path strings are URIs, but with unescaped elements and some additional normalization.
      Parameters:
      pathString - the path string
      Throws:
      IllegalArgumentException
    • Path

      public Path(URI aUri)
      Construct a path from a URI
      Parameters:
      aUri - the source URI
    • Path

      public Path(String scheme, String authority, String path)
      Construct a Path from components.
      Parameters:
      scheme - the scheme
      authority - the authority
      path - the path
  • Method Details

    • toUri

      public URI toUri()
      Convert this Path to a URI.
      Returns:
      this Path as a URI
    • isUriPathAbsolute

      public boolean isUriPathAbsolute()
      Returns true if the path component (i.e. directory) of this URI is absolute.
      Returns:
      whether this URI's path is absolute
    • isAbsolute

      public boolean isAbsolute()
      Returns true if the path component (i.e. directory) of this URI is absolute. This method is a wrapper for isUriPathAbsolute().
      Returns:
      whether this URI's path is absolute
    • isRoot

      public boolean isRoot()
      Returns true if and only if this path represents the root of a file system.
      Returns:
      true if and only if this path represents the root of a file system
    • getName

      public String getName()
      Returns the final component of this path.
      Returns:
      the final component of this path
    • getParent

      public Path getParent()
      Returns the parent of a path or null if at root.
      Returns:
      the parent of a path or null if at root
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • compareTo

      public int compareTo(Path o)
      Specified by:
      compareTo in interface Comparable<Path>
    • validateObject

      public void validateObject() throws InvalidObjectException
      Validate the contents of a deserialized Path, so as to defend against malicious object streams.
      Specified by:
      validateObject in interface ObjectInputValidation
      Throws:
      InvalidObjectException - if there's no URI
    • getName

      public static String getName(String pathString)