Outdated egg!
This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.
If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.
filepath
Description
The filepath library contains procedures for cross-platform parsing and manipulation of file paths. It supports both Windows and POSIX paths, including Windows share paths.
Library Procedures
Platform Flags
[procedure] (filepath:posix [BOOL]) => BOOLIf invoked without arguments, this procedure returns whether the library procedures assume POSIX-style paths or not. Invoking the procedure with a boolean argument disables or enables POSIX-style paths. If set to false, the library procedures assume Windows-style paths.
[procedure] (filepath:is-windows?) => BOOLConvenience function that returns the inverse of (filepath:posix).
[procedure] (filepath:is-posix?) => BOOLConvenience function that returns the result of (filepath:posix).
Path Separators
[procedure] (filepath:path-separator) => CHARThe character that separates directories. On platforms where more than one character is possible, this procedure returns the default one.
[procedure] (filepath:path-separator-set) => CHAR-SETThe set of all possible path separator characters.
[procedure] (filepath:is-path-separator? CHAR) => BOOLA predicate that returns whether the given character is a path separator for the current platform.
[procedure] (filepath:search-path-separator) => CHARThe character that is used to separate the entries in the PATH environment variable.
[procedure] (filepath:is-search-path-separator? CHAR) => BOOLA predicate that returns whether the given character can be used a separator in the PATH environment variable.
[procedure] (filepath:ext-separator) => CHARThe character that is used to separate file extensions.
[procedure] (filepath:is-ext-separator? CHAR) => BOOLA predicate that returns whether the given character is a file extension separator.
Search Path
[procedure] (filepath:split-search-path STRING) => LISTSplits a string on the search path separator character.
[procedure] (filepath:get-search-path) => STRINGReturns search path from the OS environment.
Extension procedures
[procedure] (filepath:split-extension PATH) => (NAME EXT)Splits path on the last extension.
[procedure] (filepath:take-extension PATH) => EXTReturns last extension of given path, or empty string.
[procedure] (filepath:replace-extension PATH EXT) => PATHReplaces the last path extension with the given extension.
[procedure] (filepath:drop-extension PATH) => PATHRemoves last extension and extension separator preceding it.
[procedure] (filepath:add-extension PATH EXT) => PATHAppends an extension to the given path.
[procedure] (filepath:has-extension? PATH) => BOOLReturns true if the given path has an extension.
[procedure] (filepath:split-all-extensions PATH) => (NAME EXT)Splits path on the first extension.
[procedure] (filepath:drop-all-extensions PATH) => PATHRemoves all extensions from the path.
[procedure] (filepath:take-all-extensions PATH) => EXTReturns all extensions from the path.
Drive procedures
[procedure] filepath:split-driveSplits a path into a Windows drive and a path. When in POSIX mode, / is treated as a drive.
[procedure] (filepath:join-drive DRIVE PATH) => PATHJoins a drive and the rest of the path.
[procedure] (filepath:take-drive PATH) => DRIVEReturns the drive of a path.
[procedure] (filepath:has-drive? PATH) => BOOLReturns whether the given path has a drive.
[procedure] (filepath:drop-drive PATH) => PATHRemoves the drive from the given path.
[procedure] (filepath:is-drive? STRING) => BOOLReturns true if the given string is a drive specification.
Operations on a file path
[procedure] (filepath:split-file-name PATH) => (DIR FILE)Splits a path into directory and file.
[procedure] (filepath:take-file-name PATH) => FILEReturns the filename component of a path.
[procedure] (filepath:replace-file-name PATH FILE) => PATHReplaces the filename component of a path with the given one.
[procedure] (filepath:drop-file-name PATH) => PATHRemoves the filename component of a path.
[procedure] (filepath:take-base-name PATH) => STRINGReturns the base file name (no extension) of a path.
[procedure] (filepath:replace-base-name PATH BASE) => PATHReplaces the base file name of a path with the given one.
[procedure] (filepath:take-directory PATH) => DIRReturns the directory component of a path.
[procedure] (filepath:replace-directory PATH DIR) => PATHReplaces the directory component of a path with the given one.
[procedure] (filepath:combine PATH1 PATH2) => PATHCombines two paths. If the second path is absolute, then it returns the second.
[procedure] (filepath:split-path PATH) => LISTSplits a path by the directory separator.
[procedure] (filepath:join-path LIST) => PATHJoins path elements back together.
[procedure] filepath:split-directoriesAs split-path, but does not add trailing separators to each element.
Trailing Separators
[procedure] (filepath:has-trailing-path-separator? PATH) => BOOL[procedure] (filepath:add-trailing-path-separator PATH) => PATH
[procedure] (filepath:drop-trailing-path-separator PATH) => PATH
File Name Normalization and Predicates
[procedure] (filepath:normalise PATH) => PATH[procedure] (filepath:path-equal? PATH1 PATH2) => BOOL
[procedure] (filepath:make-relative ROOT PATH) => PATH
[procedure] (filepath:is-relative? PATH) => BOOL
[procedure] (filepath:is-absolute? PATH) => BOOL
[procedure] (filepath:is-valid? PATH) => BOOL
[procedure] (filepath:make-valid PATH) => PATH
Requires
Version History
- 1.5 Fixed a bug in is-relative? (thanks to Christian Kellermann for reporting)
- 1.3 Ensure that unit test scripts returns proper exit code
- 1.2.2 Added test as a test dependency
- 1.2.1 Changed import to require-extension
- 1.2 Fix in filepath:posix
- 1.1 Ported to Chicken 4
- 1.0 Initial Release
License
Based on the Haskell FilePath library by Neil Mitchell.
Copyright 2008-2012 Ivan Raikov.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND THE CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.