A path on the file system.
Paths consist of a sequence of directories followed by the name of a file or directory. They are
delimited by a platform-dependent separator character (see System.FilePath.pathSeparator
).
- toString : String
The string representation of the path.
Instances For
- Lake.InputDirConfig.path.instConfigField
- Lake.InputFileConfig.path.instConfigField
- Lake.LeanExeConfig.srcDir.instConfigField
- Lake.LeanLibConfig.srcDir.instConfigField
- Lake.PackageConfig.binDir.instConfigField
- Lake.PackageConfig.buildDir.instConfigField
- Lake.PackageConfig.irDir.instConfigField
- Lake.PackageConfig.leanLibDir.instConfigField
- Lake.PackageConfig.nativeLibDir.instConfigField
- Lake.PackageConfig.readmeFile.instConfigField
- Lake.PackageConfig.srcDir.instConfigField
- Lake.WorkspaceConfig.packagesDir.instConfigField
- Lake.instCheckExistsFilePath
- Lake.instCoeDynlibFilePath
- Lake.instCoeFilePathGitRepo
- Lake.instCoeTextFilePathFilePath
- Lake.instComputeHashFilePathIO
- Lake.instDataKindFilePath
- Lake.instFamilyDefNameDataTypeMkStr1FilePath
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_1
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_10
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_11
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_2
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_3
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_4
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_5
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_6
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_7
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_8
- Lake.instFamilyDefNameFacetOutHAppendMkStr1FilePath_9
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr2FilePath
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr2FilePath_1
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr2FilePath_2
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr2FilePath_3
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr2FilePath_4
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr3FilePath
- Lake.instFamilyDefNameFacetOutHAppendMkStr1MkStr3FilePath_1
- Lake.instFamilyDefNameFacetOutMkStr2FilePath
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_1
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_10
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_11
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_2
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_3
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_4
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_5
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_6
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_7
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_8
- Lake.instFamilyDefNameFacetOutMkStr2FilePath_9
- Lake.instFamilyDefNameFacetOutMkStr3FilePath
- Lake.instFamilyDefNameFacetOutMkStr3FilePath_1
- Lake.instFamilyDefNameFacetOutMkStr3FilePath_2
- Lake.instFamilyDefNameFacetOutMkStr3FilePath_3
- Lake.instFamilyDefNameFacetOutMkStr3FilePath_4
- Lake.instFamilyDefNameFacetOutMkStr4FilePath
- Lake.instFamilyDefNameFacetOutMkStr4FilePath_1
- Lake.instGetMTimeFilePath
- Lake.instIsPatternPathPatDescrFilePath
- Lean.instFromJsonFilePath
- Lean.instToExprFilePath
- Lean.instToJsonFilePath
- System.FilePath.instDiv
- System.FilePath.instHDivString
- System.instCoeStringFilePath
- System.instHashableFilePath
- System.instInhabitedFilePath
- System.instReprFilePath
- System.instToStringFilePath
Equations
- System.instInhabitedFilePath = { default := { toString := default } }
Equations
- System.instHashableFilePath = { hash := System.hashFilePath✝ }
Equations
- System.instReprFilePath = { reprPrec := fun (p : System.FilePath) => Repr.addAppParen (Std.Format.text "FilePath.mk " ++ repr p.toString) }
Equations
- System.instToStringFilePath = { toString := fun (p : System.FilePath) => p.toString }
The character that separates directories.
On platforms that support multiple separators, System.FilePath.pathSeparator
is the “ideal” one expected by users
on the platform. System.FilePath.pathSeparators
lists all supported separators.
Equations
The list of all path separator characters supported on the current platform.
On platforms that support multiple separators, System.FilePath.pathSeparator
is the “ideal” one
expected by users on the platform.
The character that separates file extensions from file names.
Equations
The file extension expected for executable binaries on the current platform, or ""
if there is no
such extension.
Equations
Normalizes a path, returning an equivalent path that may better follow platform conventions.
In particular:
- On Windows, drive letters are made uppercase.
- On platforms that support multiple path separators (that is, where
System.FilePath.pathSeparators
has length greater than one), alternative path separators are replaced with the preferred path separator.
There is no guarantee that two equivalent paths normalize to the same path.
Equations
- One or more equations did not get rendered due to their size.
An absolute path starts at the root directory or a drive letter. Accessing files through an absolute path does not depend on the current working directory.
A relative path is one that depends on the current working directory for interpretation. Relative paths do not start with the root directory or a drive letter.
Equations
- p.isRelative = !p.isAbsolute
Appends two paths, taking absolute paths into account. This operation is also accessible via the /
operator.
If sub
is an absolute path, then p
is discarded and sub
is returned. If sub
is a relative
path, then it is attached to p
with the platform-specific path separator.
Equations
- System.FilePath.instDiv = { div := System.FilePath.join }
Equations
- System.FilePath.instHDivString = { hDiv := fun (p : System.FilePath) (sub : String) => p.join { toString := sub } }
Returns the parent directory of a path, if there is one.
If the path is that of the root directory or the root of a drive letter, none
is returned.
Otherwise, the path's parent directory is returned.
Equations
- One or more equations did not get rendered due to their size.
Extracts the last element of a path if it is a file or directory name.
Returns none
if the last entry is a special name (such as .
or ..
) or if the path is the root
directory.
Equations
- One or more equations did not get rendered due to their size.
Extracts the stem (non-extension) part of p.fileName
.
If the filename contains multiple extensions, then only the last one is removed. Returns none
if
there is no file name at the end of the path.
Examples:
Extracts the extension part of p.fileName
.
If the filename contains multiple extensions, then only the last one is extracted. Returns none
if
there is no file name at the end of the path.
Examples:
Replaces the file name at the end of the path p
with fname
, placing fname
in the parent
directory of p
.
If p
has no parent directory, then fname
is returned unmodified.
Appends the extension ext
to a path p
.
ext
should not have leading .
, as this function adds one. If ext
is the empty string, no
.
is added.
Unlike System.FilePath.withExtension
, this does not remove any existing extension.
Replaces the current extension in a path p
with ext
, adding it if there is no extension. If the
path has multiple file extensions, only the last one is replaced. If the path has no filename, or if
ext
is the empty string, then the filename is returned unmodified.
ext
should not have a leading .
, as this function adds one.
Examples:
("files/picture.jpeg" : System.FilePath).withExtension "jpg" = ⟨"files/picture.jpg"⟩
("files/" : System.FilePath).withExtension "zip" = ⟨"files/"⟩
("files" : System.FilePath).withExtension "zip" = ⟨"files.zip"⟩
("files/archive.tar.gz" : System.FilePath).withExtension "xz" = ⟨"files.tar.xz"⟩
Splits a path into a list of individual file names at the platform-specific path separator.
Equations
Constructs a path from a list of file names by interspersing them with the current platform's path separator.
Equations
- System.mkFilePath parts = { toString := System.FilePath.pathSeparator.toString.intercalate parts }
Equations
- System.instCoeStringFilePath = { coe := System.FilePath.mk }
Equations
The character that is used to separate the entries in the $PATH
(or %PATH%
) environment variable.
This value is platform dependent.
Equations
Separates the entries in the $PATH
(or %PATH%
) environment variable by the current
platform-dependent separator character.
Equations
- System.SearchPath.parse s = List.map System.FilePath.mk (s.split fun (c : Char) => System.SearchPath.separator == c)
Joins a list of paths into a suitable value for the current platform's $PATH
(or %PATH%
)
environment variable.