Hello All,
I am using the code below to display XML files in a folder onto gridview. But it only the item names. How can i get the name, type, date modified and size for each file.
Any help or advice. thanks
string strpath = @"C:\Users\Public\16th\";
string[] folders = Directory.GetFiles(strpath, "*.XML", SearchOption.AllDirectories);
RadGrid1.DataSource = folders;
RadGrid1.DataBind();
Go to the complete details ...