Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Synopsis
- createSymbolicLink :: FilePath -> FilePath -> IO ()
Documentation
createSymbolicLink :: FilePath -> FilePath -> IO () #
createSymbolicLink file1 file2
creates a symbolic link named file2
which points to the file file1
.
Symbolic links are interpreted at run-time as if the contents of the link had been substituted into the path being followed to find a file or directory.
Note: calls symlink
.