68 Java - Directory Operations
Directory in Java
A directory is a File which can contain a list of other files and directories. You use File object to create directories, to list down files available in a directory. For complete detail, check a list of all the methods which you can call on File object and what are related to directories.
Creating Directories
There are two useful File utility methods, which can be used to create directories −
The mkdir() method creates a directory, returning true on success and false on failure. Failure indicates that the path specified in the File object already exists, or that the directory cannot be created because the entire path does not exist yet.
The mkdirs() method creates both a directory and all the parents of the directory.
Example to Create Directory in Java
Following example creates "/tmp/user/java/bin" directory −
Output
Compile and execute the above code to create "/tmp/user/java/bin" folders.
true
Note − Java automatically takes care of path separators on UNIX and Windows as per conventions. If you use a forward slash (/) on a Windows version of Java, the path will still resolve correctly.
Listing (Reading) Directories
You can use list() method provided by File object to list down all the files and directories available in a directory as follows −
Example to Read (List) a Directory in Java
Output
This will produce the following result based on the directories and files available in your /tmp directory −
user
Deleting Directories
You can use delete() method provided by File object to delete a directory as follows −
Example to Delete a Directory in Java
Output
This will produce the following result based on the directories and files available in your /tmp directory −
The directory has been successfully deleted.

Comments
Post a Comment