[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / interpreter / library / Directory.hs
1 module Directory ( 
2     createDirectory, removeDirectory, removeFile, 
3     renameDirectory, renameFile, getDirectoryContents,
4     getCurrentDirectory, setCurrentDirectory ) where
5
6 createDirectory         :: FilePath -> IO ()
7 removeDirectory         :: FilePath -> IO ()
8 removeFile              :: FilePath -> IO ()
9 renameDirectory         :: FilePath -> FilePath -> IO ()
10 renameFile              :: FilePath -> FilePath -> IO ()
11 getDirectoryContents    :: FilePath -> IO [FilePath]
12 getCurrentDirectory     :: IO FilePath
13 setCurrentDirectory     :: FilePath -> IO ()
14
15
16
17