package interview.cp;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.nio.channels.FileChannel;
//多个并发线程可安全地使用文件通道。可随时调用关闭方法,
public class CPFile
{
public static void main(String[] args) throws Exception
{
// cpFile();
// renameFile();
cpDir(new File("d:\\back"), new File("d:\\cc\\dd"));
}
/**
* 将一个目录下所有内容(包括图片,压缩包,视频等)拷贝到另一个目录 :递归
*/
public static void cpDir(File srcFile, File destFile) throws Exception
{
if (srcFile != null & srcFile.isDirectory())
{
// 如果目标目录不存在,则创建
if (!destFile.exists())
{
destFile.mkdirs();
}
File[] files = srcFile.listFiles();
for (File file : files)
{
// 如果是文件的话
if (file.isFile())
{
BufferedInputStream bis = new BufferedInputStream(
new FileInputStream(file));
File newFile = new File(destFile.getPath() + File.separator
+ file.getName());
BufferedOutputStream bos = new BufferedOutputStream(
new FileOutputStream(newFile));
// ============== 常用的方式 begin=================//
byte[] buf = new byte[1024];
int len = 0;
while ((len = bis.read(buf)) != -1)
{
bos.write(buf, 0, len);
}
// ============== 常用的方式 end=================//
bis.close();
bos.close();
}
// 如果是目录的话,则递归
if (file.isDirectory())
{
File subDir = new File(destFile.getPath() + File.separator
+ file.getName());
cpDir(file, subDir);
}
}
}
}
/**
* 重命名文件
*/
public static void renameFile()
{
File srcFile = new File("d:\\back");
File destFile = new File("d:\\second");
boolean isOk = srcFile.renameTo(destFile);
System.out.println(isOk);
}
/**
* 利用文件通道拷贝jar包
*
* @throws Exception
*/
public static void cpFile() throws Exception
{
FileChannel srcChannel = new FileInputStream("d:\\test.zip")
.getChannel();
FileChannel destChannel = new FileOutputStream("d:\\back\\test.zip")
.getChannel();
destChannel.transferFrom(srcChannel, 0, srcChannel.size());
// destChannel.transferTo(0, srcChannel.size(), destChannel);
// 关闭流
srcChannel.close();
destChannel.close();
}
}
分享到:
相关推荐
### 知识点详解 #### 一、二级目录结构及其...通过以上分析可以看出,本实习通过模拟实现采用了二级目录结构的磁盘文件系统中的文件操作,不仅加深了对文件系统原理的理解,还锻炼了数据结构设计和算法实现的能力。
编写带缓存的文件操作类 从执行体程序库中的CLLogger类可知,通过缓存要写入文件中的数据,能够提高读写磁盘的性能 请编写一个文件操作的封装类,其要求如下: 需要提供open/read/write/lseek/close等函数的封装函数...
在Visual Studio(VS)中,XML文件操作是一个重要的开发任务,尤其对于处理数据存储、配置文件、序列化或数据交换等场景。XML(eXtensible Markup Language)是一种标记语言,它提供了结构化的数据表示方式,易于...
CANoe/CAPL 文件操作脚本是用于自动化处理CANoe环境中的配置、数据记录和分析的编程工具。CANoe是一款广泛应用于汽车电子系统的诊断、测试和测量的软件,而CAPL(CANoe Application Programming Language)是CANoe内...
大学本科操作系统实验 《磁盘文件操作模拟C语言》,花了两天的时间调试。
原数据存放在StreamingAsset中,首次启动复制到persistentDataPath,以后进行更新和读取都在persistentDataPath中使用File进行文件操作。需要恢复书序的时候从StreamingAsset中获取即可。
C#文件操作类
Noip 文件操作精讲 Noip 文件操作是编程语言中最基本也是最重要的一部分,涉及到文件的输入输出操作。无论是 C 语言还是 C++ 语言,文件操作都是必不可少的。下面将对 Noip 文件操作进行详细的讲解。 文件操作的...
c#文件操作类,读取,写入;根据传入的虚拟路径或物理路径获取文件、目录;
本项目“C++使用hookapi监控文件操作程序”正是基于这一技术,用于实现对文件系统事件的实时监控。下面将详细介绍相关的知识点。 首先,`hookapi`是指Windows API中的钩子(Hook)机制。钩子是一种让程序能够监视...
js实现的读写文件,文件放在的c:\12.txt里
JSP文件操作
C#编程 文件操作 MultiFormatTxt(源码)(源码)C#编程 文件操作 MultiFormatTxt(源码)(源码)C#编程 文件操作 MultiFormatTxt(源码)(源码)C#编程 文件操作 MultiFormatTxt(源码)(源码)C#编程 文件操作 MultiFormatTxt...
C#编程 文件操作 CamouflageFolder(源码)(源码)C#编程 文件操作 CamouflageFolder(源码)(源码)C#编程 文件操作 CamouflageFolder(源码)(源码)C#编程 文件操作 CamouflageFolder(源码)(源码)C#编程 文件操作 ...
C#编程 文件操作 FileBatchChangeName(源码)(源码)C#编程 文件操作 FileBatchChangeName(源码)(源码)C#编程 文件操作 FileBatchChangeName(源码)(源码)C#编程 文件操作 FileBatchChangeName(源码)(源码)C#编程 文件...
C#编程 文件操作 CreateFile(源码)(源码)C#编程 文件操作 CreateFile(源码)(源码)C#编程 文件操作 CreateFile(源码)(源码)C#编程 文件操作 CreateFile(源码)(源码)C#编程 文件操作 CreateFile(源码)(源码)C#编程 ...
C#编程 文件操作 SymmetricalEncrypt(源码)(源码)C#编程 文件操作 SymmetricalEncrypt(源码)(源码)C#编程 文件操作 SymmetricalEncrypt(源码)(源码)C#编程 文件操作 SymmetricalEncrypt(源码)(源码)C#编程 文件操作 ...
C#编程 文件操作 BatchDecompression(源码)(源码)C#编程 文件操作 BatchDecompression(源码)(源码)C#编程 文件操作 BatchDecompression(源码)(源码)C#编程 文件操作 BatchDecompression(源码)(源码)C#编程 文件操作 ...
C#编程 文件操作 AllowDropFile(源码)(源码)C#编程 文件操作 AllowDropFile(源码)(源码)C#编程 文件操作 AllowDropFile(源码)(源码)C#编程 文件操作 AllowDropFile(源码)(源码)C#编程 文件操作 AllowDropFile(源码)...
根据提供的信息,我们可以总结出以下关于C#文件操作的关键知识点: ### 1. 创建文件夹 在C#中,可以通过`System.IO`命名空间中的`Directory.CreateDirectory`方法来创建一个新的文件夹。 ```csharp using System....