Hi,
How can i [B]count of Selection file in the C#.net?[/B] .
[B]For Example :[/B]
In my project ,I am using [B]"RegEdit"[/B] ,that means Windows Registry.
1) User could select a File/Files from any folders
2) Click on the File.User could view the [B]Count of selection of file in the Folder[/B]
Please Help me.
Loading

Lakshmi NarayananPosted Jan 23, 2012, 5:37 AM
Thanks for your reply . Please read my question Once again .
Abdullah MunshiPosted Jan 23, 2012, 4:47 AM
using System.IO;
=======================
FileInfo[] f;
DirectoryInfo dinfo = new DirectoryInfo("E:");
f = dinfo.GetFiles();
f.Count().ToString();