- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-9-23 08:14:29
|
显示全部楼层
第一步循环取出列表,
然后根据路径进行复制文件就行了啊。
Copy的方法如下
[code=csharp]/****************************************
* 函数名称:FileCoppy
* 功能说明:拷贝文件
* 参 数:OrignFile:原始文件,NewFile:新文件路径
* 调用示列:
* string OrignFile = Server.MapPath("Default2.aspx");
* string NewFile = Server.MapPath("Default3.aspx");
* DotNet.Utilities.FileOperate.FileCoppy(OrignFile, NewFile);
*****************************************/
/// <summary>
/// 拷贝文件
/// </summary>
/// <param name="OrignFile">原始文件</param>
/// <param name="NewFile">新文件路径</param>
public static void FileCoppy(string OrignFile, string NewFile)
{
File.Copy(OrignFile, NewFile, true);
}[/code]
参考http://www.sufeinet.com/forum.php?mod=viewthread&tid=4121
读文件就简单是了
[code=csharp]StreamReader s = StreamReader("txt路径");
string str= s.ReadToEnd();[/code]
你自己整理一下吧
|
|