TasteProgram.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using DiscUtils;
  3. using DiscUtils.Ntfs;
  4. using DiscUtils.Partitions;
  5. using DiscUtils.Streams;
  6. using DiscUtils.Vhd;
  7. using System.IO;
  8. namespace SvdCli
  9. {
  10. internal class TasteProgram
  11. {
  12. private static void Main(string[] args)
  13. {
  14. var diskSize = 5L * 1024 * 1024 * 1024;
  15. using (var fs = new FileStream(@"z:\test.img", FileMode.OpenOrCreate))
  16. {
  17. {
  18. VirtualDisk destDisk = DiscUtils.Raw.Disk.Initialize(fs, Ownership.None, diskSize);
  19. BiosPartitionTable.Initialize(destDisk, WellKnownPartitionType.WindowsNtfs);
  20. var volMgr = new VolumeManager(destDisk);
  21. var label = "ZZZZZZ";
  22. using (var destNtfs =
  23. NtfsFileSystem.Format(volMgr.GetLogicalVolumes()[0], label, new NtfsFormatOptions()))
  24. {
  25. destNtfs.CreateDirectory("temp");
  26. }
  27. //commit everything to the stream before closing
  28. fs.Flush();
  29. }
  30. }
  31. using (var fs = new FileStream(@"z:\test.img", FileMode.OpenOrCreate))
  32. {
  33. VirtualDisk destDisk = new DiscUtils.Raw.Disk(fs, Ownership.None);
  34. var volMgr = new VolumeManager(destDisk);
  35. using var sparseStream = volMgr.GetLogicalVolumes()[0].Open();
  36. new NtfsFileSystemChecker(sparseStream).Check(Console.Out, ReportLevels.All);
  37. }
  38. }
  39. }
  40. }