ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | >> Directory << | System | Time | Locale | CPUTime | Random

Module: Directory
Function: getPermissions
Type: FilePath -> IO Permissions
Description: The Permissions type is used to record whether certain operations are permissible on a file/directory. getPermissions and setPermissions get and set these permissions, respectively. Permissions apply both to files and directories. For directories, the executable field will be False, and for files the searchable field will be False. Note that directories may be searchable without being readable, if permission has been given to use them as part of a path, but not to examine the directory contents.
Related:

Example 1
Program source: 

import Directory 

main = aaa "/tmp/FOO"

aaa ddd = do createDirectory ddd
	     p <- getPermissions ddd
	     print p

Output: Permissions{readable=True,writable=True,executable=False,searchable=True}

Example 2
Program source: 

import Directory 

main = aaa "/tmp/FOO"

aaa ddd = do createDirectory ddd
	     p <- getPermissions ddd
	     print (readable p)
	     print (writable p)
	     print (executable p)

Output: True

Output: True

Output: False