随时间动态创建文件夹

Posted xymaxbf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随时间动态创建文件夹相关的知识,希望对你有一定的参考价值。

想到以后要讲图片随着每天存储到不同的文件夹,就想着创建一个跟随日期的文件夹的方法,为自己以后的毕设做准备,以下是方法:
import java.util.Date;
import java.text.SimpleDateFormat;
class file{
final static String way="C:\Users\****\Desktop\";
static File file1=null;
static SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");//设置日期格式
static String time=df.format(new Date()).replaceAll("-","");// new Date()为获取当前系统时间
public static String filexits(){
String msg=null;
file1=new File(way+time);
if(!file1.exists()){
file1.mkdirs();
msg="创建成功";
}else{
msg="文件已存在";
}
return way+time;
}
}

以上是关于随时间动态创建文件夹的主要内容,如果未能解决你的问题,请参考以下文章

spring 的AOP

如何动态创建文件夹? [复制]

2016福州大学软件工程随堂测试成绩汇总

如何创建自己电脑开机动态密码

发布软件时要随二进制文件一起提供哪些文件?

从字符串动态创建文件夹树