17.3 Class File
This section presents class File
, which is useful for retrieving information about files or directories from disk. Objects of class File
do not open files or provide any file-processing capabilities. However, File
objects are used frequently with objects of other java.io
classes to specify files or directories to manipulate.
Creating File Objects
Class File
provides four constructors. The one with a String
argument specifies the name
of a file or directory to associate with the File
object. The name
can contain path information as well as a file or directory name. A file or directory’s path specifies its location on disk. The path includes some or all of the directories leading to the file or directory. An absolute path ...
Get Java How to Program (early objects), 9/e now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.