从目录下载文件的

从目录下载文件的

本文介绍了从目录下载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以指导我如何从目录分发和下载文件.我可以成功显示文件,但是我不知道要下载它.使用
进行文件分发

Can some1 guide me on how to dislay and download files from a dircetory.I can successfully display the file but i dnt have any idea about downloading it.For file dislay im using

string filepath = (@"~/NewFolder1/"+ "\\" + ddcollege.SelectedValue + "\\" + dddept.SelectedValue + "\\"
            + ddcategory.SelectedValue + "\\" + ddloctn.SelectedValue);

       // string[] subpath = "~/NewFolder1";
        string[] filePaths = Directory.GetFiles(Server.MapPath(filepath));

        //Response.Write(filePaths);

        List<ListItem> files = new List<ListItem>();

        foreach (string filePath in filePaths)
        {

            files.Add(new ListItem(Path.GetFileName(filePath), filePath));

        }

        gvdisplay.DataSource = files;

        gvdisplay.DataBind();*/

感谢

推荐答案


这篇关于从目录下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 14:47