directory-utils

  1. directory-utils
  2. Documentation
    1. Usage
    2. dirname?
    3. check-dirname
    4. error-dirname
    5. check-directory
    6. error-directory
    7. pathname?
    8. check-pathname
    9. error-pathname
    10. filename?
    11. check-filename
    12. error-filename
    13. dot-filename?
    14. dot-pathname?
    15. directory-fold
    16. create-pathname-directory
    17. make-program-filename
    18. make-shell-filename
    19. file-exists-in-directory?
    20. find-file-pathnames
    21. find-program-pathnames
    22. which-command-pathnames
    23. which-command-pathname
    24. remove-dotfiles
    25. Directory Stack
      1. directory-utility-stack
      2. push-directory
      3. pop-directory
      4. pop-toplevel-directory
  3. Requirements
  4. Author
  5. Repository
  6. Version history
  7. License

Documentation

Usage

(import directory-utils)

dirname?

check-dirname

error-dirname

[procedure] (dirname? OBJ) -> boolean
[procedure] (check-dirname LOCATION OBJECT [ARGNAM]) -> dirname
[procedure] (error-dirname LOCATION OBJECT [ARGNAM])

check-directory

error-directory

[procedure] (check-directory LOCATION OBJECT [ARGNAM]) -> directoryname
[procedure] (error-directory LOCATION OBJECT [ARGNAM])

Does the OBJECT name an existing directory>

Does not reexport (chicken file posix) directory?.

pathname?

check-pathname

error-pathname

[procedure] (pathname? OBJ) -> boolean
[procedure] (check-pathname LOCATION OBJECT [ARGNAM]) -> pathname
[procedure] (error-pathname LOCATION OBJECT [ARGNAM])

Does not verify existence of the file, just whether the pathname has a directory and/or file component.

filename?

check-filename

error-filename

[procedure] (filename? OBJ) -> boolean
[procedure] (check-filename LOCATION OBJECT [ARGNAM]) -> filename
[procedure] (error-filename LOCATION OBJECT [ARGNAM])

Does not verify existence of the file, just whether it has a directory component.

dot-filename?

[procedure] (dot-filename? PATHNAME) -> boolean

Does the OBJECT name a file with a dot-name?

Does not verify existence of the file!

dot-pathname?

[procedure] (dot-pathname? PATHNAME) -> boolean

Is any directory in the PATHNAME a dot-filename?

Does not verify existence of the file!

directory-fold

[procedure] (directory-fold FUNCTION IDENTITY DIRECTORY [#:dotfiles? DOTFILES?]) -> *

Invokes FUNCTION on each filename in the DIRECTORY and the recursive value from IDENTITY. Returns the final value.

FUNCTION
(filename * -> *).
DOTFILES
boolean ; include files with a "." prefix ; Default #f.

Note that only the filename is passed and not the complete pathname. The "." and ".." filenames are not supplied no matter the DOTFILES? setting.

On a Windows platform hidden files have a hidden attribute so this routine is rather *nix centric.

create-pathname-directory

[procedure] (create-pathname-directory PATHNAME)

Ensures the directory component of PATHNAME exist.

Like the *nix `"mkdir -p `dirname PATHNAME`" command.

make-program-filename

[procedure] (make-program-filename COMMAND) -> *

Returns the platform specific form of an executable command filename.

On Windows the "exe" extension is added unless an extension is already present. Does nothing otherwise.

make-shell-filename

[procedure] (make-shell-filename COMMAND) -> *

Returns the platform specific form of a shell command filename.

On Windows the "bat" extension is added unless an extension is already present. Otherwise conditionally adds the "sh" extension.

file-exists-in-directory?

[procedure] (file-exists-in-directory? FILENAME [DIRECTORY ...]) -> (or #f pathname)

Returns the pathname when FILENAME exists in the DIRECTORY ..., otherwise #f.

DIRECTORY ... as make-pathname.

When only the FILENAME argument supplied then the same as file-exists?.

find-file-pathnames

[procedure] (find-file-pathnames FILENAME [DIRECTORY | DIRECTORY-LIST] ...) -> (or #f (list-of pathname))

Returns a list of all pathnames found for FILENAME in the supplied directory/directories, or #f when not found.

The list of pathnames is in the same relative order as that of the directory parameter(s).

find-program-pathnames

[procedure] (find-program-pathnames COMMAND-NAME [DIRECTORY | DIRECTORY-LIST] ...) -> (or #f (list-of pathname))

Returns a list of all pathnames found for COMMAND-NAME in the supplied directory/directories, or #f when not found.

Uses make-program-filename to make a filename.

On Windows also uses make-shell-filename to make a filename.

Does not ensure that the file is executable!

which-command-pathnames

[procedure] (which-command-pathnames COMMAND-NAME [ENVIRONMENT-VARIABLE]) -> (or #f (list-of pathname))

Returns the pathnames of COMMAND-NAME in the ENVIRONMENT-VARIABLE where the file exists, or #f when nothing found.

The default ENVIRONMENT-VARIABLE is "PATH".

Uses the platform specific "PATH" environment variable element separator - a Windows #\;, and a *nix #\:.

which-command-pathname

[procedure] (which-command-pathname COMMAND-NAME [ENVIRONMENT-VARIABLE]) -> (or #f pathname)

Same as which-command-pathnames but returns the first pathname only.

Like the *nix `which COMMAND-NAME` command.

remove-dotfiles

[procedure] (remove-dotfiles FILES)

Remove dot files from a directory list. Useful with glob.

Directory Stack

directory-utility-stack

[parameter] (directory-utility-stack [STACK]) -> stack

Which stack to use for directory stack operations.

stack is from stack.

push-directory

[procedure] (push-directory DIRECTORY [STACK])

Push the current directory and change to the DIRECTORY.

DIRECTORY
string ; pathname
STACK
stack ; optional; default (directory-utility-stack)

pop-directory

[procedure] (pop-directory [STACK]) -> string

Pop the last directory and change to it.

STACK
stack ; optional; default (directory-utility-stack)

pop-toplevel-directory

[procedure] (pop-toplevel-directory [STACK]) -> string

Pop the earliest directory and change to it.

STACK
stack ; optional; default (directory-utility-stack)

Requirements

srfi-1 utf8 miscmacros moremacros stack list-utils check-errors

test test-utils

Author

Kon Lovett

Repository

This egg is hosted on the CHICKEN Subversion repository:

https://anonymous@code.call-cc.org/svn/chicken-eggs/release/5/directory-utils

If you want to check out the source code repository of this egg and you are not familiar with Subversion, see this page.

Version history

2.3.0
Add dirname?, use utf8, add directory-utils.types include, update test-runner.
2.2.5
Update test-runner.
2.2.4
Fix category.
2.2.3
Update test-runner.
2.2.2
Add strict-types, update test-gloss.
2.2.1
Update test-gloss.
2.2.0
Add optional stack argument to push-directory, pop-directory, pop-toplevel-directory.
2.1.0
CHICKEN 5.1.0 dependent.
2.0.0
CHICKEN 5 release.

License

Copyright (C) 2010-2024 Kon Lovett. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.