abstract fun createFile(path: String, handler: Handler<AsyncResult<Void>>): FileSystem
Creates an empty file with the specified path, asynchronously.
handler - the handler that will be called on completion
Return
a reference to this, so the API can be used fluently
abstract fun createFile(path: String, perms: String, handler: Handler<AsyncResult<Void>>): FileSystem
Creates an empty file with the specified path and permissions perms, asynchronously.
perms - the permissions string
handler - the handler that will be called on completion
Return
a reference to this, so the API can be used fluently