racket/pkgs/racket-doc/file/scribblings/file.scrbl
Ben Greenman 97c65102b3 add file/glob
implements globbing for path strings
- glob : globs -> listof path
  in-glob : globs -> sequenceof path
  glob-match? : globs path-string -> boolean
- wildcards are: * ? [...]
- braces {} get expanded to multiple globs
- if pattern ends with /, only match directories
- wildcards don't capture dotfiles by default (keyword arg overrides)
2016-10-06 18:41:26 -04:00

39 lines
1.0 KiB
Racket

#lang scribble/doc
@(require "common.rkt")
@title{File: Racket File and Format Libraries}
@table-of-contents[]
@include-section["convertible.scrbl"]
@include-section["gzip.scrbl"]
@include-section["gunzip.scrbl"]
@include-section["zip.scrbl"]
@include-section["unzip.scrbl"]
@include-section["tar.scrbl"]
@include-section["untar.scrbl"]
@include-section["untgz.scrbl"]
@include-section["md5.scrbl"]
@include-section["sha1.scrbl"]
@include-section["gif.scrbl"]
@include-section["ico.scrbl"]
@include-section["resource.scrbl"]
@include-section["cache.scrbl"]
@include-section["glob.scrbl"]
@(bibliography
(bib-entry #:key "Gervautz1990"
#:author "M. Gervautz and W. Purgathofer"
#:title "A simple method for color quantization: Octree quantization"
#:location "Graphics Gems"
#:date "1990")
(bib-entry #:key "Clark1996"
#:author "Dean Clark"
#:title "Color Quantization using Octrees"
#:location "Dr. Dobbs Journal"
#:date "January 1, 1996"
#:url "http://www.ddj.com/184409805"))
@index-section[]