Dear All,
from the bellow code, i need to FileName, CreationDate and File path,
i need to return them in the same collection, what should i write in the bellow select.
please help.
var getFileNameExcludeSomeExtension2 = from f in Directory.GetFiles(Server.MapPath("~/PDF/Requirement"))
where Path.GetExtension(f) != ".scc" && Path.GetExtension(f) != ".db"
select Path.GetFileName(f);
Go to the complete details ...