I would like to be able to request a folder (and subfolders) and get a list of files that meet certain criteria, according to certain attributes ... so, for example, all files that have:
in c: \ somefolder
file_extension = ".abc" the
size of the files between x and y KB
(file name, for example "% this" or file name, for example "%,%" and a file name not like "% somethingelse%"
modifieddate between date1 and date2
Is this possible with LINQ, and what will be the syntax?
source
share