úÎó“ðŒ'      !"#$%&"(c) The University of Glasgow 2001/BSD-style (see the file libraries/base/LICENSE)libraries@haskell.orgstableportable TrustworthyQ!'(: not a directory.).: a true directory (not a symbolic link).*6: a directory symbolic link (only exists on Windows). The  = operation returns the permissions for the file or directory.The operation may fail with:+= if the user is not permitted to access the permissions; or,) if the file or directory does not exist. The  : operation sets the permissions for the file or directory.The operation may fail with:+: if the user is not permitted to set the permissions; or,) if the file or directory does not exist.   dir creates a new directory dirN which is initially empty, or as near to empty as the operating system allows.The operation may fail with:+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EROFS, EACCES]- /  AlreadyExists8 The operand refers to a directory that already exists.  [EEXIST] HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument, The operand is not a valid directory name. [ENAMETOOLONG, ELOOP] NoSuchThing$ There is no path to the directory. [ENOENT, ENOTDIR]ResourceExhausted† Insufficient resources (virtual memory, process file descriptors, physical disk space, etc.) are available to perform the operation.  [EDQUOT, ENOSPC, ENOMEM, EMLINK].6 The path refers to an existing non-directory object. [EEXIST] parents dir creates a new directory dir/ if it doesn't exist. If the first argument is /K the function will also create all parent directories if they are missing.0Obtain the type of a directory. dir removes an existing directory dirÿ§. The implementation may specify additional constraints which must be satisfied before a directory can be removed (e.g. the directory has to be empty, or may not be in use by other processes). It is not legal for an implementation to partially remove a directory unless the entire directory is removed. A conformant implementation need not support directory removal in all situations (e.g. removal of the root directory).The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument, The operand is not a valid directory name. [ENAMETOOLONG, ELOOP], /  NoSuchThing The directory does not exist. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EROFS, EACCES, EPERM]UnsatisfiedConstraints9 Implementation-dependent constraints are not satisfied. [EBUSY, ENOTEMPTY, EEXIST]UnsupportedOperation@ The implementation does not support removal in this situation. [EINVAL].9 The operand refers to an existing non-directory object.  [ENOTDIR] dir removes an existing directory dirq together with its contents and subdirectories. Symbolic links are removed without affecting their the targets.11 path+ removes an existing file or directory at pathp together with its contents and subdirectories. Symbolic links are removed without affecting their the targets.22 dir( removes the contents of the directory dirN recursively. Symbolic links are removed without affecting their the targets. file2 removes the directory entry for an existing file file, where file¼ is not itself a directory. The implementation may specify additional constraints which must be satisfied before a file can be removed (e.g. the file may not be in use by other processes).The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument' The operand is not a valid file name. [ENAMETOOLONG, ELOOP], /  NoSuchThing The file does not exist. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EROFS, EACCES, EPERM]UnsatisfiedConstraints9 Implementation-dependent constraints are not satisfied. [EBUSY].. The operand refers to an existing directory. [EPERM, EINVAL] old new0 changes the name of an existing directory from old to new . If the new< directory already exists, it is atomically replaced by the old directory. If the new directory is neither the old directory nor an alias of the old# directory, it is removed as if by Î. A conformant implementation need not support renaming directories in all situations (e.g. renaming to an existing directory, or across different physical devices), but the constraints must be documented.On Win32 platforms, renameDirectory fails if the new directory already exists.The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument/ Either operand is not a valid directory name. [ENAMETOOLONG, ELOOP], /  NoSuchThingK The original directory does not exist, or there is no path to the target. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EROFS, EACCES, EPERM]ResourceExhausted@ Insufficient resources are available to perform the operation.  [EDQUOT, ENOSPC, ENOMEM, EMLINK]UnsatisfiedConstraints9 Implementation-dependent constraints are not satisfied. [EBUSY, ENOTEMPTY, EEXIST]UnsupportedOperationA The implementation does not support renaming in this situation. [EINVAL, EXDEV].9 Either path refers to an existing non-directory object. [ENOTDIR, EISDIR] old new9 changes the name of an existing file system object from old to new . If the new9 object already exists, it is atomically replaced by the oldä object. Neither path may refer to an existing directory. A conformant implementation need not support renaming files in all situations (e.g. renaming across different physical devices), but the constraints must be documented.The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument* Either operand is not a valid file name. [ENAMETOOLONG, ELOOP], /  NoSuchThingF The original file does not exist, or there is no path to the target. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EROFS, EACCES, EPERM]ResourceExhausted@ Insufficient resources are available to perform the operation.  [EDQUOT, ENOSPC, ENOMEM, EMLINK]UnsatisfiedConstraints9 Implementation-dependent constraints are not satisfied. [EBUSY]UnsupportedOperationA The implementation does not support renaming in this situation. [EXDEV].. Either path refers to an existing directory. ,[ENOTDIR, EISDIR, EINVAL, EEXIST, ENOTEMPTY] old new copies the existing file from old to new . If the new7 file already exists, it is atomically replaced by the oldL file. Neither path may refer to an existing directory. The permissions of old are copied to new, if possible.¥Canonicalize the path of an existing file or directory. The intent is that two paths referring to the same file/directory will map to the same canonicalized path.Note8: if you only require an absolute path, consider using ^ instead, which is more reliable and does not have unspecified behavior on nonexistent paths.®It is impossible to guarantee that the implication (same file/dir <=> same canonicalized path) holds in either direction: this function can make only a best-effort attempt.+The precise behaviour is that of the POSIX realpath function (or GetFullPathNameW¹ on Windows). In particular, the behaviour on paths that don't exist can vary from platform to platform. Some platforms do not alter the input, some do, and some throw an exception.FAn empty path is considered to be equivalent to the current directory. Known bug(s)<: on Windows, this function does not resolve symbolic links.fMake a path absolute by prepending the current directory (if it isn't already absolute) and applying 3 to the result.3The operation may fail with the same exceptions as .Since: 1.2.2.04 the current directory.ÿGiven an executable file name, searches for such file in the directories listed in system PATH. The returned value is the path to the found executable or Nothing if an executable with the given name was not found. For example (findExecutable "ghc") gives you the path to GHC.The path returned by 7 corresponds to the program that would be executed by D when passed the same string (as a RawCommand, not a ShellCommand). On Windows,  calls the Win32 function  SearchPathE, which may search other places before checking the directories in PATH‰. Where it actually searches depends on registry settings, but notably includes the directory containing the current executable. See  5http://msdn.microsoft.com/en-us/library/aa365527.aspx for more details.cGiven a file name, searches for the file and returns a list of all occurences that are executable.Since: 1.2.2.0ISearch through the given set of directories for the given file. Used by  on non-windows platforms.xSearch through the given set of directories for the given file and returns a list of paths where the given file exists.Since: 1.2.1.0ÀSearch through the given set of directories for the given file and with the given property (usually permissions) and returns a list of paths where the given file exists and has the property.Since: 1.2.1.0 dir returns a list of all entries in dir.The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument, The operand is not a valid directory name. [ENAMETOOLONG, ELOOP], /  NoSuchThing The directory does not exist. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EACCES]ResourceExhausted@ Insufficient resources are available to perform the operation. [EMFILE, ENFILE].6 The path refers to an existing non-directory object.  [ENOTDIR]=If the operating system has a notion of current directories, J returns an absolute path to the current directory of the calling process.The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO], /  NoSuchThing6 There is no path referring to the current directory. [EPERM, ENOENT, ESTALE...]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EACCES]ResourceExhausted? Insufficient resources are available to perform the operation.UnsupportedOperation9 The operating system has no notion of current directory.õNote that in a concurrent program, the current directory is global state shared between all threads of the process. When using filesystem operations from multiple threads, it is therefore highly recommended to use absolute rather than relative 5s.=If the operating system has a notion of current directories,  dir9 changes the current directory of the calling process to dir.The operation may fail with: HardwareFault$ A physical I/O error has occurred. [EIO]InvalidArgument, The operand is not a valid directory name. [ENAMETOOLONG, ELOOP], /  NoSuchThing The directory does not exist. [ENOENT, ENOTDIR]+ / PermissionDeniedC The process has insufficient privileges to perform the operation. [EACCES]UnsupportedOperationq The operating system has no notion of current directory, or the current directory cannot be dynamically changed..6 The path refers to an existing non-directory object.  [ENOTDIR]õNote that in a concurrent program, the current directory is global state shared between all threads of the process. When using filesystem operations from multiple threads, it is therefore highly recommended to use absolute rather than relative 5s. The operation   returns /^ if the argument file exists and is either a directory or a symbolic link to a directory, and 6 otherwise.!The operation ! returns /9 if the argument file exists and is not a directory, and 6 otherwise."The "S operation returns the clock time at which the file or directory was last modified.The operation may fail with:+C if the user is not permitted to access the modification time; or,) if the file or directory does not exist.lNote: This function returns a timestamp with sub-second resolution only if this package is compiled against  unix-2.6.0.0 or later for unix systems, and  Win32-2.3.1.0… or later for windows systems. Of course this also requires that the underlying file system supports such high resolution timestamps.#*Returns the current user's home directory.®The directory returned is expected to be writable by the current user, but note that it isn't generally considered good practice to store application-specific data here; use $ instead. On Unix, # returns the value of the HOMEg environment variable. On Windows, the system is queried for a suitable path; a typical path might be C:/Documents And Settings/user.The operation may fail with:UnsupportedOperation6 The operating system has no notion of home directory.,L The home directory for the current user does not exist, or cannot be found.$zReturns the pathname of a directory in which application-specific data for the current user can be stored. The result of $9 for a given application is specific to the current user.®The argument should be the name of the application, which will be used to construct the pathname (so avoid using unusual characters that might result in an invalid pathname).Note: the directory may not actually exist, and may need to be created first. It is expected that the parent directory exists and is writable.On Unix, this function returns $HOME/.appName&. On Windows, a typical path might be %C:/Users/user/AppData/Roaming/appNameThe operation may fail with:UnsupportedOperationK The operating system has no notion of application-specific data directory.,L The home directory for the current user does not exist, or cannot be found.%.Returns the current user's document directory.®The directory returned is expected to be writable by the current user, but note that it isn't generally considered good practice to store application-specific data here; use $ instead. On Unix, % returns the value of the HOMEg environment variable. On Windows, the system is queried for a suitable path; a typical path might be +C:/Documents And Settings/user/My Documents.The operation may fail with:UnsupportedOperation: The operating system has no notion of document directory.,P The document directory for the current user does not exist, or cannot be found.&2Returns the current directory for temporary files. On Unix, & returns the value of the TMPDIR¿ environment variable or "/tmp" if the variable isn't defined. On Windows, the function checks for the existence of environment variables in the following order and uses the first path found:TMP environment variable.TEMP environment variable.!USERPROFILE environment variable.The Windows directoryThe operation may fail with:UnsupportedOperation; The operating system has no notion of temporary directory.4The function doesn't verify whether the path exists.7+Extension for executable files (typically "" on Unix and "exe" on Windows or OS/2)2'*)(89: Create its parents too?*The path to the directory you want to make012 !"#$%&7'  !"#$%&+ #$%&!  "*'()*89: 012 !"#$%&7;      !"#$%&'()*+,-./01/02/03/456789:;<=><=?/@A67BCDEFdirectory-1.2.2.1System.DirectorySystem.Process createProcess Permissionsreadablewritable executable searchableemptyPermissionssetOwnerReadablesetOwnerWritablesetOwnerExecutablesetOwnerSearchablegetPermissionssetPermissionscopyPermissionscreateDirectorycreateDirectoryIfMissingremoveDirectoryremoveDirectoryRecursive removeFilerenameDirectory renameFilecopyFilecanonicalizePath makeAbsolutemakeRelativeToCurrentDirectoryfindExecutablefindExecutablesfindFile findFiles findFilesWithgetDirectoryContentsgetCurrentDirectorysetCurrentDirectorydoesDirectoryExist doesFileExistgetModificationTimegetHomeDirectorygetAppUserDataDirectorygetUserDocumentsDirectorygetTemporaryDirectory DirectoryType NotDirectory Directory DirectoryLinkbaseSystem.IO.ErrorisPermissionErrorisDoesNotExistErrorisAlreadyExistsErrorGHC.IO.ExceptionInappropriateTypeghc-prim GHC.TypesTruegetDirectoryTyperemovePathRecursiveremoveContentsRecursivefilepath-1.3.0.2System.FilePath.Posix normalise makeRelativeGHC.IOFilePathFalse exeExtensionlong_path_size c_realpath