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: | setCurrentDirectory |
Type: | FilePath -> IO () |
Description: | setCurrentDirectory dir changes the current directory of the calling process to 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"]