Idris2/libs/base/System/File.idr

26 lines
767 B
Idris
Raw Normal View History

2020-05-18 15:59:07 +03:00
module System.File
import Data.Buffer
import public System.File.Buffer
import public System.File.Error
import public System.File.Handle
import public System.File.Meta
import public System.File.Mode
import public System.File.Permissions
import public System.File.Process
import public System.File.ReadWrite
import public System.File.Types
import public System.File.Virtual
||| Copy the file at the specified source to the given destination.
|||
||| @ src the file to copy
||| @ dest the place to copy the file to
export
copyFile : HasIO io => (src : String) -> (dest : String) -> io (Either FileError ())
copyFile src dest
= do Right buf <- createBufferFromFile src
| Left err => pure (Left err)
writeBufferToFile dest buf !(rawSize buf)