| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | >> Directory << | System | Time | Locale | CPUTime | Random |
| Module: | Directory |
|---|---|
| Function: | getDirectoryContents |
| Type: | FilePath -> IO [FilePath] |
| Description: | getDirectoryContents dir returns a list of all entries in dir |
| Related: |
Program source: import Directory main = aaa "/tmp/FOO" aaa ddd = do createDirectory ddd setCurrentDirectory ddd d <- getCurrentDirectory print d writeFile "aaa" "HELLO" l <- getDirectoryContents d print l
Output: "/tmp/FOO"
Output: [".","..","aaa"]