/** * 将当前目录下的所有文件都复制一份,复制的文件命名为:原 * 文件名_cp.后缀 * 比如原文件为:test.dat * 复制后的文件为:test_cp.dat * * * @author Xiloer * */
时间: 2023-10-06 19:04:08 浏览: 105
复制对应规定的文件类型并且复制保存目录
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class CopyFiles {
public static void main(String[] args) {
// 获取当前目录
String currentPath = System.getProperty("user.dir");
// 获取当前目录下的所有文件
File[] files = new File(currentPath).listFiles();
// 遍历所有文件
for (File file : files) {
// 如果是文件而不是文件夹
if (file.isFile()) {
FileInputStream fis = null;
FileOutputStream fos = null;
try {
// 创建输入流,读取原文件
fis = new FileInputStream(file);
// 创建输出流,写入复制文件
String newFileName = file.getName().replace(".", "_cp.");
fos = new FileOutputStream(newFileName);
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer)) > 0) {
fos.write(buffer, 0, length);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fis != null) {
fis.close();
}
if (fos != null) {
fos.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
}
阅读全文