18
2012
05

C# 下查询某个文件夹下面所有文本文件的内容或文件名

        private void btnSearch_Click(object sender, EventArgs e)   //点击按钮
        {
            if (txtTitle.Text.Trim() != "")   //要查询的条件文本框
...

16
2012
04

Asp.Net 获取某个文件夹中的文件名,并存入到DropDownList中

//参数为指定的目录
public void FindFile(DropDownList dropList)
{
string Path = Server.MapPath("~//DbFile"); //指定在服务器上的路径
//在指定目录及子目录下查找文件,在DropDownList 中列出子目录及文件
DirectoryInfo Dir = new DirectoryInfo(Path);
...
«1»