using System;
using System.IO;
public class GetFilesTest {
public static void Main() {
// make a reference to a directory
DirectoryInfo di = new DirectoryInfo("c:\\");
// get a reference to each file in that directory
FileInfo[] fiArr = di.GetFiles();
// print out the names of the files
foreach (FileInfo fri in fiArr)
Console.WriteLine(fri.Name);
}
}
Monday, December 8, 2008
Editable Nested GridView
Hey Guys,
check it out Nested grid.
http://www.codeproject.com/KB/aspnet/EditNestedGridView.aspx
best regards,
JAGAN
check it out Nested grid.
http://www.codeproject.com/KB/aspnet/EditNestedGridView.aspx
best regards,
JAGAN
Subscribe to:
Posts (Atom)