File Input Output Java

import java.io.File;
import java.io.IOException;
public class Utils {
  /**
   * Build a directory path - creating directories if neccesary
   * 
   * @param file
   * @return true if the directory exists, or making it was successful
   */
  public static boolean buildDirectory(File file) {
      return file.exists() || file.mkdirs();
  }
}