Copyright | 2013 shelarcy |
---|---|
License | BSD-style |
Maintainer | shelarcy@gmail.com |
Stability | Provisional |
Portability | Non-portable (Win32 API) |
Safe Haskell | Safe |
Language | Haskell2010 |
Handling hard link using Win32 API. [NTFS only]
Note: You should worry about file system type when use this module's function in your application:
- NTFS only supprts this functionality.
- ReFS doesn't support hard link currently.
Synopsis
- c_CreateHardLink :: LPCTSTR -> LPCTSTR -> LPSECURITY_ATTRIBUTES -> IO BOOL
- createHardLink :: FilePath -> FilePath -> IO ()
- createHardLink' :: FilePath -> FilePath -> IO ()
Documentation
:: LPCTSTR | Hard link name |
-> LPCTSTR | Target file path |
-> LPSECURITY_ATTRIBUTES | This parameter is reserved. You should pass just nullPtr. |
-> IO BOOL |
NOTE: createHardLink is flipped arguments to provide compatiblity for Unix.
If you want to create hard link by Windows way, use createHardLink'
instead.