- public static void moveDataFile2Reject() throws Exception {
- try {
- //String dataFilePath = PropertyUtil.getString(PropertyUtil.INPUT_FILE_PATH_KEY);
- //String rejectFilePath = PropertyUtil.getString(PropertyUtil.REJECT_FILE__PATH_KEY);
- String dataFilePath = "D:\\a\b";
- String rejectFilePath = "D:\\a\reject";
- File file = new File(dataFilePath);
- File[] files = file.listFiles();
- for (File f : files) {
- if(f.isFile())
- {
- f.renameTo(new File(rejectFilePath + f.getName()));
- }
- }
- } catch (Exception e) {
- logger.error("moveInFile2Reject Failed" , e);
- }
- }
Java 中 更改文件路径
最新推荐文章于 2025-01-14 08:08:41 发布