- 2
- 0
- 约1.18千字
- 约 17页
- 2017-04-23 发布于四川
- 举报
第十一章节文件操作和输入输出流
第十一章;目标;体验;文件和流;IO 命名空间和它类;;流I/O操作类;其他I/O流类;目录管理; string path = @c:\MyDir;
string target = @c:\TestDir;
try
{
if (Directory.Exists(target))
{ Directory.Delete(target, true);
Console.WriteLine(Path:{0} is deleted., path);
}
if (!Directory.Exists(path))
{ Directory.CreateDirectory(path);
Console.WriteLine(Path:{0} is created now., path);
}
else
{ Console.WriteLine(Path:{0} is exist.,path);} }
Directory.Move(path, target);
Directory.CreateDirectory(target + @\subdir);
File.CreateText(target + @\myfile.txt);
Console.WriteLine(The number of files in {0} is {1},
target, Directory.GetFiles(target).Length);
}
catch (Exception e)
{
Console.WriteLine(The process failed: {0}, e.ToString());
}
finally { }
;递归算法;递归示例;文件管理;文本模式文件数据读写 ;文件流获得;二进制模式文件数据读写 ;总结
您可能关注的文档
最近下载
- 乐购Hymall连锁超市-收银员排班工具使用作业规范.pdf VIP
- 黑龙江省教育学会示范性高中专业委员会2025届高三下学期第一次模拟考试 语文 含答案.docx VIP
- ISPE第五部分试车与确认课件.pptx VIP
- 【2026年春新教材】部编版小学二年级下册道德与法治全册教案(教学设计).docx
- 数学北师大版八年级下册多边形的内角和教学设计.docx VIP
- 守正创新担使命,凝心聚力启新程——校长在2026年春季学期全体教师开学大会上的讲话.docx
- 《体育课程与教学论》全套PPT课件.pptx VIP
- 第一章税收初阶资料.ppt VIP
- 数据接口安全管理制度.docx VIP
- 道路车辆 电气及电子设备的环境条件和试验 第3部分:机械负荷.docx VIP
原创力文档

文档评论(0)