Differences between file. mkdirs and file. mkdir

Source: Internet
Author: User

File. mkdirs can create files under the L2 directory.

File. mkdir can create only one file in the second-level directory and only in the existing Directory. if the path does not exist, call file. mkdirs () method to create the directory path to which we want to write files. It can build the entire path at one time.

Does this path actually exist? The user may decide to put all source code directories into a completely different subdirectory, which may not exist yet.

Therefore, before formally writing each file, you must call the file. mkdirs () method to create the directory path to which you want to write files.

It can build the entire path at one time.

The file. mkdirs () method can create a complete path. mkdir () can only create folders in an existing Directory.

Mkdirs () can be used to create folders in a directory that does not exist. For example, a \ B can create multi-level directories.

Mkdirs public Boolean mkdirs () creates a directory whose path name is specified by the current file object, including any required parent path.

Return Value: true if the directory (or multi-level directory) can be created; otherwise, false.

Mkdir public Boolean mkdir () creates a directory whose path name is specified by the current file object.

Return Value: true if the directory can be created; otherwise, false. Mkdir () can only be used to create folders in an existing Directory. Mkdirs () can be used to create folders in a directory that does not exist. For example, a \ B can create multi-level directories. Mkdirs

 

Public Boolean mkdirs () creates a directory whose path name is specified by the current file object, including any required parent path. Return Value: true if the directory (or multi-level directory) can be created; otherwise, false.

 

Mkdir public Boolean mkdir () creates a directory whose path name is specified by the current file object. Return Value: true if the directory can be created; otherwise, false.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.