| Package | Description | 
|---|---|
| io.vertx.rxjava.core | |
| io.vertx.rxjava.core.file | 
| Modifier and Type | Method and Description | 
|---|---|
FileSystem | 
Vertx.fileSystem()
Get the filesystem object. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static io.vertx.lang.rx.TypeArg<FileSystem> | 
FileSystem.__TYPE_ARG  | 
| Modifier and Type | Method and Description | 
|---|---|
FileSystem | 
FileSystem.chmod(String path,
     String perms,
     Handler<AsyncResult<Void>> handler)
Change the permissions on the file represented by  
path to perms, asynchronously. | 
FileSystem | 
FileSystem.chmodBlocking(String path,
             String perms)
Blocking version of  
#chmod(String, String, Handler) | 
FileSystem | 
FileSystem.chmodRecursive(String path,
              String perms,
              String dirPerms,
              Handler<AsyncResult<Void>> handler)
Change the permissions on the file represented by  
path to perms, asynchronously. | 
FileSystem | 
FileSystem.chmodRecursiveBlocking(String path,
                      String perms,
                      String dirPerms)
 | 
FileSystem | 
FileSystem.chown(String path,
     String user,
     String group,
     Handler<AsyncResult<Void>> handler)
Change the ownership on the file represented by  
path to user and {code group}, asynchronously. | 
FileSystem | 
FileSystem.chownBlocking(String path,
             String user,
             String group)
Blocking version of 
 | 
FileSystem | 
FileSystem.copy(String from,
    String to,
    CopyOptions options,
    Handler<AsyncResult<Void>> handler)
Copy a file from the path  
from to path to, asynchronously. | 
FileSystem | 
FileSystem.copy(String from,
    String to,
    Handler<AsyncResult<Void>> handler)
Copy a file from the path  
from to path to, asynchronously. | 
FileSystem | 
FileSystem.copyBlocking(String from,
            String to)
 | 
FileSystem | 
FileSystem.copyRecursive(String from,
             String to,
             boolean recursive,
             Handler<AsyncResult<Void>> handler)
Copy a file from the path  
from to path to, asynchronously. | 
FileSystem | 
FileSystem.copyRecursiveBlocking(String from,
                     String to,
                     boolean recursive)
 | 
FileSystem | 
FileSystem.createFile(String path,
          Handler<AsyncResult<Void>> handler)
Creates an empty file with the specified  
path, asynchronously. | 
FileSystem | 
FileSystem.createFile(String path,
          String perms,
          Handler<AsyncResult<Void>> handler)
Creates an empty file with the specified  
path and permissions perms, asynchronously. | 
FileSystem | 
FileSystem.createFileBlocking(String path)
 | 
FileSystem | 
FileSystem.createFileBlocking(String path,
                  String perms)
 | 
FileSystem | 
FileSystem.createTempDirectory(String prefix,
                   Handler<AsyncResult<String>> handler)
Creates a new directory in the default temporary-file directory, using the given
 prefix to generate its name, asynchronously. 
 | 
FileSystem | 
FileSystem.createTempDirectory(String prefix,
                   String perms,
                   Handler<AsyncResult<String>> handler)
Creates a new directory in the default temporary-file directory, using the given
 prefix to generate its name, asynchronously. 
 | 
FileSystem | 
FileSystem.createTempDirectory(String dir,
                   String prefix,
                   String perms,
                   Handler<AsyncResult<String>> handler)
Creates a new directory in the directory provided by the path  
path, using the given
 prefix to generate its name, asynchronously. | 
FileSystem | 
FileSystem.createTempFile(String prefix,
              String suffix,
              Handler<AsyncResult<String>> handler)
Creates a new file in the default temporary-file directory, using the given
 prefix and suffix to generate its name, asynchronously. 
 | 
FileSystem | 
FileSystem.createTempFile(String prefix,
              String suffix,
              String perms,
              Handler<AsyncResult<String>> handler)
Creates a new file in the directory provided by the path  
dir, using the given
 prefix and suffix to generate its name, asynchronously. | 
FileSystem | 
FileSystem.createTempFile(String dir,
              String prefix,
              String suffix,
              String perms,
              Handler<AsyncResult<String>> handler)
Creates a new file in the directory provided by the path  
dir, using the given
 prefix and suffix to generate its name, asynchronously. | 
FileSystem | 
FileSystem.delete(String path,
      Handler<AsyncResult<Void>> handler)
Deletes the file represented by the specified  
path, asynchronously. | 
FileSystem | 
FileSystem.deleteBlocking(String path)
 | 
FileSystem | 
FileSystem.deleteRecursive(String path,
               boolean recursive,
               Handler<AsyncResult<Void>> handler)
Deletes the file represented by the specified  
path, asynchronously. | 
FileSystem | 
FileSystem.deleteRecursiveBlocking(String path,
                       boolean recursive)
 | 
FileSystem | 
FileSystem.exists(String path,
      Handler<AsyncResult<Boolean>> handler)
Determines whether the file as specified by the path  
path exists, asynchronously. | 
FileSystem | 
FileSystem.fsProps(String path,
       Handler<AsyncResult<FileSystemProps>> handler)
Returns properties of the file-system being used by the specified  
path, asynchronously. | 
FileSystem | 
FileSystem.link(String link,
    String existing,
    Handler<AsyncResult<Void>> handler)
Create a hard link on the file system from  
link to existing, asynchronously. | 
FileSystem | 
FileSystem.linkBlocking(String link,
            String existing)
 | 
FileSystem | 
FileSystem.lprops(String path,
      Handler<AsyncResult<FileProps>> handler)
Obtain properties for the link represented by  
path, asynchronously. | 
FileSystem | 
FileSystem.mkdir(String path,
     Handler<AsyncResult<Void>> handler)
Create the directory represented by  
path, asynchronously. | 
FileSystem | 
FileSystem.mkdir(String path,
     String perms,
     Handler<AsyncResult<Void>> handler)
Create the directory represented by  
path, asynchronously. | 
FileSystem | 
FileSystem.mkdirBlocking(String path)
 | 
FileSystem | 
FileSystem.mkdirBlocking(String path,
             String perms)
 | 
FileSystem | 
FileSystem.mkdirs(String path,
      Handler<AsyncResult<Void>> handler)
Create the directory represented by  
path and any non existent parents, asynchronously. | 
FileSystem | 
FileSystem.mkdirs(String path,
      String perms,
      Handler<AsyncResult<Void>> handler)
Create the directory represented by  
path and any non existent parents, asynchronously. | 
FileSystem | 
FileSystem.mkdirsBlocking(String path)
 | 
FileSystem | 
FileSystem.mkdirsBlocking(String path,
              String perms)
 | 
FileSystem | 
FileSystem.move(String from,
    String to,
    CopyOptions options,
    Handler<AsyncResult<Void>> handler)
Move a file from the path  
from to path to, asynchronously. | 
FileSystem | 
FileSystem.move(String from,
    String to,
    Handler<AsyncResult<Void>> handler)
Move a file from the path  
from to path to, asynchronously. | 
FileSystem | 
FileSystem.moveBlocking(String from,
            String to)
 | 
static FileSystem | 
FileSystem.newInstance(FileSystem arg)  | 
FileSystem | 
FileSystem.open(String path,
    OpenOptions options,
    Handler<AsyncResult<AsyncFile>> handler)
Open the file represented by  
path, asynchronously. | 
FileSystem | 
FileSystem.props(String path,
     Handler<AsyncResult<FileProps>> handler)
Obtain properties for the file represented by  
path, asynchronously. | 
FileSystem | 
FileSystem.readDir(String path,
       Handler<AsyncResult<List<String>>> handler)
Read the contents of the directory specified by  
path, asynchronously. | 
FileSystem | 
FileSystem.readDir(String path,
       String filter,
       Handler<AsyncResult<List<String>>> handler)
Read the contents of the directory specified by  
path, asynchronously. | 
FileSystem | 
FileSystem.readFile(String path,
        Handler<AsyncResult<Buffer>> handler)
Reads the entire file as represented by the path  
path as a , asynchronously. | 
FileSystem | 
FileSystem.readSymlink(String link,
           Handler<AsyncResult<String>> handler)
Returns the path representing the file that the symbolic link specified by  
link points to, asynchronously. | 
FileSystem | 
FileSystem.symlink(String link,
       String existing,
       Handler<AsyncResult<Void>> handler)
Create a symbolic link on the file system from  
link to existing, asynchronously. | 
FileSystem | 
FileSystem.symlinkBlocking(String link,
               String existing)
 | 
FileSystem | 
FileSystem.truncate(String path,
        long len,
        Handler<AsyncResult<Void>> handler)
Truncate the file represented by  
path to length len in bytes, asynchronously. | 
FileSystem | 
FileSystem.truncateBlocking(String path,
                long len)
 | 
FileSystem | 
FileSystem.unlink(String link,
      Handler<AsyncResult<Void>> handler)
Unlinks the link on the file system represented by the path  
link, asynchronously. | 
FileSystem | 
FileSystem.unlinkBlocking(String link)
 | 
FileSystem | 
FileSystem.writeFile(String path,
         Buffer data,
         Handler<AsyncResult<Void>> handler)
Creates the file, and writes the specified  
Buffer data to the file represented by the path path,
 asynchronously. | 
FileSystem | 
FileSystem.writeFileBlocking(String path,
                 Buffer data)
 | 
Copyright © 2020 Eclipse. All rights reserved.