Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to master the IO stream of java

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "how to master the IO stream of java". In the daily operation, I believe that many people have doubts about how to master the IO stream of java. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "how to master the IO stream of java"! Next, please follow the editor to study!

File API

Q: can the File class be used for directory operations?

A: yes.

The File object itself can be a directory. You can create a directory by calling file.mkdirs ().

Q: can I delete a directory by calling file.delete () directly?

A: if it is a file or an empty directory, you can delete it directly.

However, if there are files or subdirectories in the directory, they must be deleted recursively.

Private static boolean deleteDir (File dir) {if (dir.isDirectory ()) {String [] children = dir.list (); / / Recursively delete for under a subdirectory in the directory (int iTuno; I)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report