package com.szjz.utils;
import java.io.File;
/**
* 创建文件夹
* @author 廖世勇
*
*/
public class UploadAttachmentsCreateFolders {
public UploadAttachmentsCreateFolders() {
super();
}
/**
* 创建文件夹
*/
public void CreateFolders(){
String RealPath="";
String catalinaHome =System.getProperty("ccc.home");
RealPath = catalinaHome + "\\webapps\\aaa\\upload";
try{
File files =newFile(RealPath); //根据指定的路径创建文件夹
if(files.exists()){
System.out.println("该目录已经存在不需要创建!!");
}else{
files.mkdir(); //创建一个文件夹
}
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 判断文件夹是否存在
*/
public String getRealPath(){
String RealPath="";
String values="";
String catalinaHome =System.getProperty("ccc.home");
RealPath = catalinaHome + "\\webapps\\aaa\\upload";
System.out.println("<<<<<RealPath>>>>>"+RealPath);
try{
File files =newFile(RealPath); //根据指定的路径创建文件夹
if(files.exists()){
values="2"; //表示存在
return values;
}else{ //如果,该文件或文件夹不存在
values="1";
return values;
}
}catch(Exception e){
e.printStackTrace();
return null;
}
}
}