implicit final class FsExtensions extends AnyVal
File System Extensions
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FsExtensions
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
FsExtensions(instance: Fs)
- instance
the given file system instance
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
def
accessFuture(path: Path, mode: FileMode): Future[Unit]
- Annotations
- @inline()
-
def
accessFuture(path: Path): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: FileDescriptor, data: String): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: FileDescriptor, data: Buffer): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: Path, data: String): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: Path, data: Buffer): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: FileDescriptor, data: String, options: FileAppendOptions): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: FileDescriptor, data: Buffer, options: FileAppendOptions): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: Path, data: String, options: FileAppendOptions): Future[Unit]
- Annotations
- @inline()
-
def
appendFileFuture(file: Path, data: Buffer, options: FileAppendOptions): Future[Unit]
- Annotations
- @inline()
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
chmodFuture(path: Path, mode: FileMode): Future[Unit]
- Annotations
- @inline()
-
def
chownFuture(path: Path, uid: UID, gid: GID): Future[Unit]
- Annotations
- @inline()
-
def
copyFileFuture(src: Path, dest: Path): Future[Unit]
- Annotations
- @inline()
-
def
copyFileFuture(src: Path, dest: Path, flags: Flags): Future[Unit]
- Annotations
- @inline()
-
def
existsFuture(path: Path): Future[Boolean]
- Annotations
- @inline()
-
def
fchmodFuture(fd: FileDescriptor, mode: FileMode): Future[Unit]
- Annotations
- @inline()
-
def
fchownFuture(fd: FileDescriptor, uid: UID, gid: GID): Future[Unit]
- Annotations
- @inline()
-
def
fdatasyncFuture(fd: FileDescriptor): Future[Unit]
- Annotations
- @inline()
-
def
fstatFuture(fd: FileDescriptor): Future[Stats]
- Annotations
- @inline()
-
def
fstatFuture(fd: FileDescriptor, options: StatOptions): Future[StatsVariant]
- Annotations
- @inline()
-
def
fsyncFuture(fd: FileDescriptor): Future[Unit]
- Annotations
- @inline()
-
def
ftruncateFuture(fd: FileDescriptor): Future[Unit]
- Annotations
- @inline()
-
def
futimesFuture(fd: FileDescriptor, atime: Time, mtime: Time): Future[Unit]
- Annotations
- @inline()
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lchmodFuture(path: Path, mode: FileMode): Future[Unit]
- Annotations
- @inline()
-
def
lchownFuture(path: Path, uid: UID, gid: GID): Future[Unit]
- Annotations
- @inline()
-
def
linkFuture(srcpath: Path, dstpath: Path): Future[Unit]
- Annotations
- @inline()
-
def
lstatFuture(path: Path): Future[Stats]
- Annotations
- @inline()
-
def
lstatFuture(path: Path, options: StatOptions): Future[StatsVariant]
- Annotations
- @inline()
-
def
mkdirFuture(path: Path, options: MkdirOptions): Future[Unit]
- Annotations
- @inline()
-
def
mkdirFuture(path: Path): Future[Unit]
- Annotations
- @inline()
-
def
mkdirFuture(path: Path, mode: FileMode): Future[Unit]
- Annotations
- @inline()
-
def
mkdirRecursiveFuture(path: Path, options: MkdirOptions): Future[Unit]
- Annotations
- @inline()
-
def
mkdirRecursiveFuture(path: Path): Future[Unit]
- Annotations
- @inline()
-
def
mkdtempFuture(prefix: String): Future[String]
- Annotations
- @inline()
-
def
mkdtempFuture(prefix: String, options: FileEncodingOptions): Future[String]
- Annotations
- @inline()
-
def
openFuture(path: Path, flags: Flags): Future[FileDescriptor]
- Annotations
- @inline()
-
def
openFuture(path: Path, flags: Flags, mode: FileMode): Future[FileDescriptor]
- Annotations
- @inline()
-
def
readFileFuture(file: FileDescriptor): Future[Buffer]
- Annotations
- @inline()
-
def
readFileFuture(file: Path): Future[Buffer]
- Annotations
- @inline()
-
def
readFileFuture(file: FileDescriptor, encoding: String): Future[String]
- Annotations
- @inline()
-
def
readFileFuture(file: Path, encoding: String): Future[String]
- Annotations
- @inline()
-
def
readFileFuture(file: FileDescriptor, options: ReadFileOptions): Future[Output]
- Annotations
- @inline()
-
def
readFileFuture(file: Path, options: ReadFileOptions): Future[Output]
- Annotations
- @inline()
-
def
readFuture(fd: FileDescriptor, buffer: Buffer, offset: |[Int, Null], length: |[Int, Null], position: |[Int, Null]): Future[(Int, Buffer)]
- Annotations
- @inline()
-
def
readdirBufferFuture(path: Path): Future[Array[Buffer]]
- Annotations
- @inline()
-
def
readdirDirentFuture(path: String): Future[Array[Dirent]]
- Annotations
- @inline()
-
def
readdirDirentFuture(path: Buffer): Future[Array[Dirent]]
- Annotations
- @inline()
-
def
readdirFuture(path: Path, options: FileEncodingOptions): Future[Array[String]]
- Annotations
- @inline()
-
def
readdirFuture(path: Path): Future[Array[String]]
- Annotations
- @inline()
-
def
readdirFuture(path: Path, encoding: String): Future[Array[String]]
- Annotations
- @inline()
-
def
readlinkFuture(file: Path): Future[String]
- Annotations
- @inline()
-
def
readlinkFuture(file: Path, options: FileEncodingOptions): Future[Output]
- Annotations
- @inline()
-
def
readlinkFuture(file: Path, options: String): Future[Output]
- Annotations
- @inline()
-
def
realpathFuture(file: Path): Future[String]
- Annotations
- @inline()
-
def
realpathFuture(file: Path, options: FileEncodingOptions): Future[Output]
- Annotations
- @inline()
-
def
realpathFuture(file: Path, options: String): Future[Output]
- Annotations
- @inline()
-
def
realpathNativeFuture(file: Path): Future[String]
- Annotations
- @inline()
-
def
realpathNativeFuture(file: Path, encoding: String): Future[Output]
- Annotations
- @inline()
-
def
realpathNativeFuture(file: Path, options: FileEncodingOptions): Future[Output]
- Annotations
- @inline()
-
def
renameFuture(oldPath: Path, newPath: Path): Future[Unit]
- Annotations
- @inline()
-
def
rmdirFuture(path: Path): Future[Unit]
- Annotations
- @inline()
-
def
statFuture(path: Path, options: StatOptions): Future[StatsVariant]
- Annotations
- @inline()
-
def
statFuture(path: Path): Future[Stats]
- Annotations
- @inline()
-
def
symlinkFuture(target: Path, path: Path): Future[Unit]
- Annotations
- @inline()
-
def
symlinkFuture(target: Path, path: Path, type: String): Future[Unit]
- Annotations
- @inline()
-
def
toString(): String
- Definition Classes
- Any
-
def
truncateFuture(target: Path, length: Int): Future[Unit]
- Annotations
- @inline()
-
def
truncateFuture(target: Path): Future[Unit]
- Annotations
- @inline()
-
def
unlinkFuture(path: Path): Future[Unit]
- Annotations
- @inline()
-
def
unwatchFileFuture(filename: Path): Future[Unit]
- Annotations
- @inline()
-
def
utimesFuture(path: Path, atime: Time, mtime: Time): Future[Unit]
- Annotations
- @inline()
-
def
watchFileFuture(filename: Path, options: FileWatcherOptions): Future[(Stats, Stats)]
- Annotations
- @inline()
-
def
watchFileFuture(filename: Path): Future[(Stats, Stats)]
- Annotations
- @inline()
-
def
watchFuture(filename: Path, options: FSWatcherOptions): Future[(EventType, String)]
- Annotations
- @inline()
-
def
watchFuture(filename: Path): Future[(EventType, String)]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: String): Future[Unit]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: String, options: FileWriteOptions): Future[Unit]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: BufferLike, options: FileWriteOptions): Future[Unit]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: BufferLike): Future[Unit]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: Uint8Array): Future[Unit]
- Annotations
- @inline()
-
def
writeFileFuture(file: String, data: Uint8Array, options: FileWriteOptions): Future[Unit]
- Annotations
- @inline()
-
def
writeFuture(fd: FileDescriptor, string: String): Future[(FileType, String)]
- Annotations
- @inline()
-
def
writeFuture(fd: FileDescriptor, string: String, position: Int): Future[(FileType, String)]
- Annotations
- @inline()
-
def
writeFuture(fd: FileDescriptor, string: String, position: Int, encoding: String): Future[(FileType, String)]
- Annotations
- @inline()
-
def
writeFuture(fd: FileDescriptor, buffer: BufferLike, offset: |[Int, Null], length: |[Int, Null], position: |[Int, Null]): Future[(FileType, Buffer)]
- Annotations
- @inline()
-
def
writeFuture(fd: FileDescriptor, buffer: Uint8Array, offset: |[Int, Null], length: |[Int, Null], position: |[Int, Null]): Future[(FileType, Buffer)]
- Annotations
- @inline()