Here you can find the source of renameDirectory(String newDir, String oldDir)
static public void renameDirectory(String newDir, String oldDir)
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { static public void renameDirectory(String newDir, String oldDir) { File ofile = new File(oldDir); File nfile = new File(newDir); ofile.renameTo(nfile);/*from w ww. jav a 2s .c o m*/ } }