Here you can find the source of touchDir(String filePath)
public static void touchDir(String filePath)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static void touchDir(String filePath) { File file = new File(filePath); if (!file.exists()) { file.mkdir();//from w w w. j av a 2 s . co m } } }