/** * �õ�ϵͳ���õ��ϴ��ļ�����·�� * * @return String */ public static String getPath(String loadPath) { String path = PropertiesReader.GetProptery(loadPath); if (path == null || "".equals(path)) { throw new java.lang.IllegalStateException("�ϴ��ļ��ı���·��û�����á�" + loadPath + "=?"); } File file = new File(path); if (!file.isDirectory()) { file.mkdirs(); } return path; }
public static String getDocumentPath() { return PropertiesReader.GetProptery(UPLOAD_FILE_SAVE_PATH); }