这个单语句查询简洁地说“给我一个裸文件名列表,该文件是包含特定文件结构的 ZIP 存储库。”
但我同时使用 .Where() 扩展方法(流利的语法)和选择查询,因为我尝试的任何其他方法都无法编译。如果我将“.Where(file ==> <statement>)”更改为“where <statement>”,则会收到匿名方法代码不返回布尔值的错误,如果我更改“select <clause>”到“.Select(<clause>)”,错误是“没有使用选择子句”。
我对查询或流利的语法都很满意,但我想选择其中一个。谁能解释为什么这不起作用,以及我需要做些什么来确定一种一致的语法?
return (from file in Directory.EnumerateFiles(
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), Globals.CompanyName, ProjectName, FolderName),
imageExtension,
SearchOption.TopDirectoryOnly)
.Where(file =>
{
try
{
string relativePath = ClassFru.Station + "/"; // Inside ZIPs, paths use a single forward slash
var zip = new ZipFile();
zip.ZipError += (s, o) => { throw new Exception(); };
using (zip = ZipFile.Read(file))
{
/// <todo>if (zip.Comment != Globals.CompanyName) { return false; }</todo>
foreach (var fru in this.gFrus)
{
var fruPath = relativePath + fru.Id + '.';
if (!(from e in zip where !e.IsDirectory && e.FileName.StartsWith(fruPath) select true).Any()) { return false; }
}
return true;
}
}
catch (Exception)
{
return false;
}
})
select Path.GetFileNameWithoutExtension(file)).ToArray();