Module
Node.FS.Async  
- Package
 - purescript-node-fs
 - Repository
 - purescript-node/purescript-node-fs
 
#fdOpen Source
fdOpen :: FilePath -> FileFlags -> Maybe FileMode -> Callback FileDescriptor -> Effect UnitOpen a file asynchronously. See the Node Documentation for details.
#fdRead Source
fdRead :: FileDescriptor -> Buffer -> BufferOffset -> BufferLength -> Maybe FilePosition -> Callback ByteCount -> Effect UnitRead from a file asynchronously. See the Node Documentation for details.
#fdWrite Source
fdWrite :: FileDescriptor -> Buffer -> BufferOffset -> BufferLength -> Maybe FilePosition -> Callback ByteCount -> Effect UnitWrite to a file asynchronously. See the Node Documentation for details.
#fdClose Source
fdClose :: FileDescriptor -> Callback Unit -> Effect UnitClose a file asynchronously. See the Node Documentation for details.