NIO 2 File API: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>


<font color=darkgray>
To research:
<syntaxhighlight lang='java'>
Path.of("")
</syntaxhighlight>
</font>


Create one directory:
Create one directory:
Line 59: Line 65:
Get current directory:
Get current directory:
<syntaxhighlight lang='java'>
<syntaxhighlight lang='java'>
new File(.).toPath().toAbsolutePath().toString()
new File(".").toPath().toAbsolutePath().toString()
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 06:23, 2 April 2021

External

Internal

Subjects

Recipes

Build a new absolute Path instances from components:

Path p = Paths.get("/Users", "ovidiu", "tmp")

Build a new relative Path instances from components:

Path p = Paths.get("ovidiu", "tmp")

To research:

Path.of("")

Create one directory:

Path parent = ...;
Path dir = Files.createDirectory(Paths.get(parent.toString(), "my-dir"));

Create a directory hierarchy:

Path parent = ...;
Path dir = Files.createDirectories(Paths.get(parent.toString(), "dir1/dir2/dir3"));

Get file name:

Path file = ...;
String fileName = file.getFileName().toString();

Create a file with a specified content:

Path file = ...;
Files.write(file, "something".getBytes());

Verify that a directory exists (works for both absolute and relative paths)

Path p = Paths.get("/Users/ovidiu/tmp");
assert Files.isDirectory(p) == true
// run from "/Users"
Path p = Paths.get("ovidiu/tmp");
assert Files.isDirectory(p) == true

Get current directory:

new File(".").toPath().toAbsolutePath().toString()