Example #1
0
 internal DirectoryEntry(FatFileSystemOptions options, FileName name, FatAttributes attrs, FatType fatVariant)
 {
     _options    = options;
     _fatVariant = fatVariant;
     _name       = name;
     _attr       = (byte)attrs;
 }
Example #2
0
 internal DirectoryEntry(FatFileSystemOptions options, FileName name, FatAttributes attrs, FatType fatVariant)
 {
     _options = options;
     _fatVariant = fatVariant;
     _name = name;
     _attr = (byte)attrs;
 }
Example #3
0
 internal DirectoryEntry(FatFileSystemOptions options, FileName name, FatAttributes attrs)
 {
     _options = options;
     _name = name;
     _attr = (byte)attrs;
 }
Example #4
0
 internal DirectoryEntry(FatFileSystemOptions options, string name, FatAttributes attrs)
 {
     _options = options;
     _name    = name;
     _attr    = (byte)attrs;
 }
 internal DirectoryEntry(string name, FatAttributes attrs)
 {
     _name = name;
     _attr = (byte)attrs;
 }
Example #6
0
        internal DirectoryEntry(string name, FatAttributes attrs)
        {
            _name = name;
            _attr = (byte)attrs;

        }