Lesson 15 - Working with files and folders in Java - New API
In the previous lesson, Working with files and folders in Java, we went over the older File
class. In the end of the article, we showed the issues the class suffers from.
Since Java version 7, developers have come up with a new API. This API includes
new classes: Files
, Paths
and the most important
Path
interface. In today's lesson we're going to describe all these
classes.
The Path Interface
The Path
interface simply represents a path in a filesystem.
It's good to say that the implementation of this interface depends on the
operating system. As in the lesson on File
, we'll
introduce the methods associated with this interface.
Creating an Instance
Since Path
is an interface, we have to instantiate it by a
factory method. There are several ways, but two are the most important:
Paths.get(String path): Path
- an older way to create an instance; since Java version 11, it only delegates to the next methodPath.of(String path): Path
- since Java version 11; creates a new instance based on a path specified in the parameter
Let's show a sample usage:
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In the second part of working with files and folders in Java, we'll introduce the new API and its classes.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.