string tempPath = Path.GetTempPath();
DirectoryInfo dirInfo = new DirectoryInfo( tempPath );
var query =
	from f in dirInfo.GetFiles()
	where f.Length > 10000
	orderby f.Length descending
	select f;
