Java file文件迁移、删除

该代码段展示了如何在Java中实现文件的迁移和删除。首先,通过renameTo方法将文件从一个目录移动到另一个目录,如果目标目录不存在则创建。接着,提供了删除文件的方法,使用delete()函数来完成,并根据返回值判断删除是否成功。
摘要由CSDN通过智能技术生成

1.文件迁移,调用***renameTo***方法

 public String removeFile(String fileName) throws Exception {
        String message = "";
        //获取系统日期,例如:20200101
        String date = Machine.getSystemDate();
        //根据日期为20200101改为2020-01-01
        String treatedDate="treated_"+date.substring(0, 4) + '-' + date.substring(4, 6) + '-' + date.substring(6, 8);
        String oldName = "";
        String newName = "";
        //原文件目录
        oldName = "D:/qfii/"+treatedDate+"/" +  fileName;
        //需要迁移到的新目录
        newName = "D:/qdii/"+treatedDate;

        //源文件路径
        File startFile = new File(oldName);

        //目的目录路径
        File endDirection = new File(newName);
        //如果目的目录路径不存在,则进行创建
        if (!endDirection.exists()) {
            endDirection.mkdirs();
        }

        //目的文件路径=目的目录路径+源文件名称
        File endFile = new File(endDirection + File.separator + startFile.getName());

        try {
            //调用File类的核心方法renameTo
            if (startFile.renameTo(endFile)) {
                System.out.println("文件移动成功!目标路径:{" + endFile.getAbsolutePath() + "}");
                message = "true";
            } else {
                System.out.println("文件移动失败!起始路径:{" + startFile.getAbsolutePath() + "}");
                message = "false";
            }
        } catch (Exception e) {
            System.out.println("文件移动出现异常!起始路径:{" + startFile.getAbsolutePath() + "}");
        }

        return message;
    }

2.file 文件删除

    //文件删除
    public static void main(String[] args) {
        try {
         //删除文件的文件目录
            File file = new File("D:/qdii20210205/test.txt");
      
      //删除方法  根据true和false判断
            if (file.delete()) {
                System.out.println(file.getName() + "is deleted");
            } else {
                System.out.println("Delete failed.");
            }
        } catch (Exception e) {
            System.out.println("Exception occured");
            e.printStackTrace();
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值