Hi Alexander,
Regarding the GDB format can you verify this code:
Console.WriteLine(" Gdb:");
** Console.WriteLine(" Purpose:a folder-based database format from Esri storing multiple feature classes and tables.“);**
** Console.WriteLine(” Files needed: FileGdb can be represent as a dataset or just as one table.“);**
** Console.WriteLine(” In case of dataset - the entire .gdb folder as a single file.“);**
** Console.WriteLine(” In case of one table - .gdbtable and .gdbtablx as an archive file.");**
** Console.WriteLine();**
General:
Structure of a File Geodatabase (.gdb)
- A
.gdbappears as a folder on your computer. Inside, there are many files with different extensions (e.g.,.gdbtable,.gdbtablx,.gdbindexes), but you never interact with them directly—ArcGIS handles them internally. - The user-visible “mandatory” part is simply the folder itself with the
.gdbextension.
Mandatory component
- The folder ending in
.gdb- Without the folder, there’s no geodatabase.
- Everything inside is managed by ArcGIS; you don’t need to worry about individual internal files.
Optional or internal files
.gdbtable,.gdbtablx,.gdbindexes,.gdbp, etc.- These are created automatically by ArcGIS for storing feature classes, tables, spatial indexes, etc.
- You don’t manually create them.
Thanks in advance,