最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net i/o创建目录列表实例
时间:2022-06-25 05:04:33 编辑:袖梨 来源:一聚教程网
asp教程.net i/o创建目录列表实例
下面的代码示例显示了如何使用 io 类来创建目录列表。
[c#]
using system;
using system.io;
class directorylister
{
public static void main(string[] args)
{
directoryinfo dir = new directoryinfo(".");
foreach (fileinfo f in dir.getfiles("*.cs"))
{
string name = f.fullname;
long size = f.length;
datetime creationtime = f.creationtime;
console.writeline("{0,-12:n0} {1,-20:g} {2}", size,
creationtime, name);
}
}
}
在本示例中,directoryinfo 对象是当前目录,用 (".") 表示,代码列出了当前目录中具有 .cs 扩展名的所有文件,同时还列出了这些文件的大小、创建时间和名称。假设 c:mydir 的 bin 子目录中存在多个 .cs 文件,该代码的输出可能如下所示:
953 7/20/2000 10:42 am c:mydirbinparamatt.cs
664 7/27/2000 3:11 pm c:mydirbintst.cs
403 8/8/2000 10:25 am c:mydirbindirlist.cs
如果您要另一个目录中文件的列表,例如 c: root 目录,请记着使用反斜杠 () 转义符,如"c:"中的反斜杠。您也可以使用 unix 样式的斜杠,如"c:/"中的斜杠。
相关文章
- 《燕云十六声》红尘无眼完成图文攻略 12-25
- 《燕云十六声》阴阳如影完成图文攻略 12-25
- 《燕云十六声》悬檐之下四架椽屋图文攻略 12-25
- 《燕云十六声》2024最新公测时间介绍 12-25
- 《燕云十六声》有没有藏宝阁 12-25
- 《燕云十六声》制作公司介绍 12-25