Portability | non-portable (requires POSIX) |
---|---|
Stability | provisional |
Maintainer | libraries@haskell.org |
Safe Haskell | Trustworthy |
String-based POSIX directory support
- createDirectory :: RawFilePath -> FileMode -> IO ()
- removeDirectory :: RawFilePath -> IO ()
- data DirStream
- openDirStream :: RawFilePath -> IO DirStream
- readDirStream :: DirStream -> IO RawFilePath
- rewindDirStream :: DirStream -> IO ()
- closeDirStream :: DirStream -> IO ()
- data DirStreamOffset
- tellDirStream :: DirStream -> IO DirStreamOffset
- seekDirStream :: DirStream -> DirStreamOffset -> IO ()
- getWorkingDirectory :: IO RawFilePath
- changeWorkingDirectory :: RawFilePath -> IO ()
- changeWorkingDirectoryFd :: Fd -> IO ()
Creating and removing directories
createDirectory :: RawFilePath -> FileMode -> IO ()Source
createDirectory dir mode
calls mkdir
to
create a new directory, dir
, with permissions based on
mode
.
removeDirectory :: RawFilePath -> IO ()Source
Reading directories
openDirStream :: RawFilePath -> IO DirStreamSource
openDirStream dir
calls opendir
to obtain a
directory stream for dir
.
readDirStream :: DirStream -> IO RawFilePathSource
readDirStream dp
calls readdir
to obtain the
next directory entry (struct dirent
) for the open directory
stream dp
, and returns the d_name
member of that
structure.
rewindDirStream :: DirStream -> IO ()Source
rewindDirStream dp
calls rewinddir
to reposition
the directory stream dp
at the beginning of the directory.
closeDirStream :: DirStream -> IO ()Source
closeDirStream dp
calls closedir
to close
the directory stream dp
.
data DirStreamOffset Source
seekDirStream :: DirStream -> DirStreamOffset -> IO ()Source
The working dirctory
getWorkingDirectory :: IO RawFilePathSource
getWorkingDirectory
calls getcwd
to obtain the name
of the current working directory.
changeWorkingDirectory :: RawFilePath -> IO ()Source
changeWorkingDirectory dir
calls chdir
to change
the current working directory to dir
.
changeWorkingDirectoryFd :: Fd -> IO ()Source