Path
The @effect/platform/Path
module provides a set of operations for working with file paths.
The module provides a single Path
tag, which acts as the gateway for interacting with paths.
The Path
interface includes the following operations:
Operation | Description |
---|---|
basename | Returns the last part of a path, optionally removing a given suffix. |
dirname | Returns the directory part of a path. |
extname | Returns the file extension from a path. |
format | Formats a path object into a path string. |
fromFileUrl | Converts a file URL to a path. |
isAbsolute | Checks if a path is absolute. |
join | Joins multiple path segments into one. |
normalize | Normalizes a path by resolving . and .. segments. |
parse | Parses a path string into an object with its segments. |
relative | Computes the relative path from one path to another. |
resolve | Resolves a sequence of paths to an absolute path. |
sep | Returns the platform-specific path segment separator (e.g., / on POSIX). |
toFileUrl | Converts a path to a file URL. |
toNamespacedPath | Converts a path to a namespaced path (specific to Windows). |
Example (Using join
)