需要 using System.IO;
1) 相对路径转绝对路径
- string fullfolder = HttpContext.Current.Server.MapPath(folder);
复制代码
2) 文件移动(改名)
- File.Move(Server.MapPath("/a.txt"), Server.MapPath("/b.txt"));
复制代码
3) 文件复制
- File.Copy(Server.MapPath("/a.txt"), Server.MapPath("/b.txt"), true);
复制代码
4) 文件是否存在
- File.Exists(filefullname)
复制代码
5) 目录是否存在
- Directory.Exists(fullfolder))
复制代码
6) 创建目录
- Directory.CreateDirectory(fullfolder);
复制代码
7) 目录移动
8) 读取文本文件
- StreamReader srd = File.OpenText(fullfilename);
- srd.ReadToEnd();
- srd.Close();
- srd.Dispose();
复制代码
9) 写文件
- StreamWriter swr = File.CreateText(Server.MapPath("test.txt"));
- swr.Write("message");
- swr.Close();
- swr.Dispose();
复制代码
10)删除文件
- // 删除硬盘上的文件
- if (File.Exists(filefullname))
- {
- File.Delete(filefullname);
- }
复制代码
11)目录遍历
- public void ListFiles(string pathname)
- {
- // 所有目录与文件
- string[] subDirs = Directory.GetDirectories(pathname);
- string[] subFiles = Directory.GetFiles(pathname);
- foreach (string subDir in subDirs)
- {
- ListFiles(subDir);
- }
- // 所有文件
- foreach (string subFile in subFiles)
- {
- string filename = Path.GetFileName(subFile);
- }
- }
复制代码
12)文件修改时间
- FileInfo fi = new FileInfo(@"c:\test.txt");
- DateTime writetime = fi.LastWriteTime;
复制代码
13)从含路径的文件名中提取文件名
- System.IO.Path.GetFileName(fullPath);//文件名
复制代码
|
|