1. public   void   newFolder(String   folderPath)  
  2.  {  
  3.   String   filePath   =   folderPath;  
  4.   filePath   =   filePath.toString();       
  5.   java.io.File   myFilePath   =   new   java.io.File(filePath);  
  6.   try  
  7.   {  
  8.    if(myFilePath.isDirectory())  
  9.    {  
  10.     System.out.println("the directory is exists!");  
  11.    }  
  12.    else  
  13.    {  
  14.     myFilePath.mkdir();  
  15.     System.out.println("新建目录成功");  
  16.    }  
  17.   }  
  18.   catch   (Exception   e)  
  19.   {  
  20.    System.out.println("新建目录操作出错");  
  21.    e.printStackTrace();  
  22.   }  
  23.  }