W3cubDocs

/Haskell 8

System.Win32.HardLink

Copyright 2013 shelarcy
License BSD-style
Maintainer [email protected]
Stability Provisional
Portability Non-portable (Win32 API)
Safe Haskell Safe
Language Haskell2010

Description

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.

c_CreateHardLink

Arguments

:: LPCTSTR

Hard link name

-> LPCTSTR

Target file path

-> LPSECURITY_ATTRIBUTES

This parameter is reserved. You should pass just nullPtr.

-> IO BOOL

createHardLink

Arguments

:: FilePath

Target file path

-> FilePath

Hard link name

-> IO ()

NOTE: createHardLink is flipped arguments to provide compatiblity for Unix.

If you want to create hard link by Windows way, use createHardLink' instead.

createHardLink'

Arguments

:: FilePath

Hard link name

-> FilePath

Target file path

-> IO ()

© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/8.8.3/docs/html/libraries/Win32-2.6.1.0/System-Win32-HardLink.html