集册 Java实例教程 创建文件夹

创建文件夹

欢马劈雪     最近更新时间:2020-01-02 10:19:05

411
创建文件夹


//package com.nowjava;/** N o w  J a v a  . c o m 提 供 **/

import java.io.File;


public class Main {

    public static void main(String[] argv) throws Exception {

        String folderPath = "nowjava.com";

        System.out.println(createFolder(folderPath));

    }


    public static boolean createFolder(String folderPath) {

        File outputFolder = new File(folderPath);


        if (outputFolder.exists())

            
展开阅读全文