Added command to list filesystem contents.

This commit is contained in:
2016-07-22 02:18:29 +01:00
parent f47947f09a
commit 2454f68f36
4 changed files with 343 additions and 1 deletions

View File

@@ -322,5 +322,15 @@ namespace DiscImageChef
public class StatsOptions
{
}
[Verb("ls", HelpText = "Lists files in disc image.")]
public class LsOptions : CommonOptions
{
[Option('i', "input", Required = true, HelpText = "Disc image.")]
public string InputFile { get; set; }
[Option('l', "long", Default = false, HelpText = "Uses long format.")]
public bool Long { get; set; }
}
}