tags:

views:

14

answers:

1

I want to bind gridview of all D:\ drive file folders in asp.net? and download the file? how is it possible?

A: 

You basic need 2 functions to travel to the directories and files...

System.IO.Directory.GetFiles(CurrentFolderPath, "*");
System.IO.Directory.GetDirectories(CurrentFolderPath, "*");

and then use a generic handler (.ashx) to render the results (and download this file).

Aristos