public EmulatedSdFileSystemCreator(EmulatedSdCard sdCard, IFileSystem rootFileSystem, string path)
 {
     SdCard         = sdCard;
     RootFileSystem = rootFileSystem;
     Path           = path;
 }
 public EmulatedSdFileSystemCreator(EmulatedSdCard sdCard, IFileSystem rootFileSystem)
 {
     SdCard         = sdCard;
     RootFileSystem = rootFileSystem;
 }