mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.Filesystems/Structs.cs:
Added structs for filesystem entries information. * DiscImageChef/Plugins.cs: * DiscImageChef.Filesystems/FFS.cs: * DiscImageChef.Filesystems/FAT.cs: * DiscImageChef.Filesystems/ODS.cs: * DiscImageChef.Filesystems/BFS.cs: * DiscImageChef.Filesystems/NTFS.cs: * DiscImageChef/Commands/Formats.cs: * DiscImageChef.Filesystems/APFS.cs: * DiscImageChef.Filesystems/HPFS.cs: * DiscImageChef/Commands/Analyze.cs: * DiscImageChef.Filesystems/SysV.cs: * DiscImageChef.Filesystems/Acorn.cs: * DiscImageChef.Filesystems/Opera.cs: * DiscImageChef.Filesystems/extFS.cs: * DiscImageChef.Filesystems/BTRFS.cs: * DiscImageChef/Commands/DumpMedia.cs: * DiscImageChef.Filesystems/ProDOS.cs: * DiscImageChef.Filesystems/LisaFS.cs: * DiscImageChef.Filesystems/ext2FS.cs: * DiscImageChef.Filesystems/MinixFS.cs: * DiscImageChef.Filesystems/ISO9660.cs: * DiscImageChef.Filesystems/SolarFS.cs: * DiscImageChef.Filesystems/UNIXBFS.cs: * DiscImageChef.Filesystems/AmigaDOS.cs: * DiscImageChef.Filesystems/AppleHFS.cs: * DiscImageChef.Filesystems/PCEngine.cs: * DiscImageChef.Filesystems/AppleMFS.cs: * DiscImageChef.Filesystems/Nintendo.cs: * DiscImageChef/Commands/CreateSidecar.cs: * DiscImageChef.Filesystems/Filesystem.cs: * DiscImageChef.Filesystems/AppleHFSPlus.cs: Refactored filesystem plugin class name. * DiscImageChef.Filesystems/DiscImageChef.Filesystems.csproj: Refactored filesystem plugin class name. Added structs for filesystem entries information.
This commit is contained in:
@@ -44,7 +44,7 @@ using Schemas;
|
||||
using DiscImageChef.CommonTypes;
|
||||
using DiscImageChef.ImagePlugins;
|
||||
using DiscImageChef.PartPlugins;
|
||||
using DiscImageChef.Plugins;
|
||||
using DiscImageChef.Filesystems;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
@@ -783,7 +783,7 @@ namespace DiscImageChef.Commands
|
||||
|
||||
List<FileSystemType> lstFs = new List<FileSystemType>();
|
||||
|
||||
foreach(Plugin _plugin in plugins.PluginsList.Values)
|
||||
foreach(Filesystem _plugin in plugins.PluginsList.Values)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -814,7 +814,7 @@ namespace DiscImageChef.Commands
|
||||
|
||||
List<FileSystemType> lstFs = new List<FileSystemType>();
|
||||
|
||||
foreach(Plugin _plugin in plugins.PluginsList.Values)
|
||||
foreach(Filesystem _plugin in plugins.PluginsList.Values)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -2976,7 +2976,7 @@ namespace DiscImageChef.Commands
|
||||
|
||||
List<FileSystemType> lstFs = new List<FileSystemType>();
|
||||
|
||||
foreach(Plugin _plugin in plugins.PluginsList.Values)
|
||||
foreach(Filesystem _plugin in plugins.PluginsList.Values)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -3016,7 +3016,7 @@ namespace DiscImageChef.Commands
|
||||
|
||||
List<FileSystemType> lstFs = new List<FileSystemType>();
|
||||
|
||||
foreach(Plugin _plugin in plugins.PluginsList.Values)
|
||||
foreach(Filesystem _plugin in plugins.PluginsList.Values)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user