fix load error, document directory.
parent
7b5f7f95fb
commit
7bb5ab8752
|
@ -0,0 +1,17 @@
|
||||||
|
! Copyright (C) 2008 Doug Coleman.
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
|
USING: help.markup help.syntax io.streams.string strings ;
|
||||||
|
IN: io.files.listing
|
||||||
|
|
||||||
|
HELP: directory.
|
||||||
|
{ $values
|
||||||
|
{ "path" "a pathname string" }
|
||||||
|
}
|
||||||
|
{ $description "Prints information about all files in a directory to the output stream in a cross-platform way similar to the Unix " { $snippet "ls" } " command." } ;
|
||||||
|
|
||||||
|
ARTICLE: "io.files.listing" "Listing files"
|
||||||
|
"The " { $vocab-link "io.files.listing" } " vocabulary implements directory file listing in a cross-platform way." $nl
|
||||||
|
"Listing a directory:"
|
||||||
|
{ $subsection directory. } ;
|
||||||
|
|
||||||
|
ABOUT: "io.files.listing"
|
|
@ -2,7 +2,8 @@
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors combinators kernel system unicode.case
|
USING: accessors combinators kernel system unicode.case
|
||||||
io.unix.files io.files.listing generalizations strings
|
io.unix.files io.files.listing generalizations strings
|
||||||
arrays sequences io.files math.parser unix.groups unix.users ;
|
arrays sequences io.files math.parser unix.groups unix.users
|
||||||
|
io.files.listing.private ;
|
||||||
IN: io.files.listing.unix
|
IN: io.files.listing.unix
|
||||||
|
|
||||||
<PRIVATE
|
<PRIVATE
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors calendar.format combinators io.files
|
USING: accessors calendar.format combinators io.files
|
||||||
kernel math.parser sequences splitting system io.files.listing
|
kernel math.parser sequences splitting system io.files.listing
|
||||||
generalizations ;
|
generalizations io.files.listing.private ;
|
||||||
IN: io.files.listing.windows
|
IN: io.files.listing.windows
|
||||||
|
|
||||||
<PRIVATE
|
<PRIVATE
|
||||||
|
|
Loading…
Reference in New Issue