コード例 #1
0
ファイル: ZipDevice.cs プロジェクト: ezhangle/RomScanner
 public static bool IsFile(this ZipArchiveEntry entry)
 => entry.GetEntryType() == VfsEntryType.File;
コード例 #2
0
ファイル: ZipDevice.cs プロジェクト: ezhangle/RomScanner
 public static bool IsDirectory(this ZipArchiveEntry entry)
 => entry.GetEntryType() == VfsEntryType.Directory;