ShapefileDataSet.FeatureIndexPath Property
Gets or sets the directory where the feature index files will be saved.
Syntax
public System.String FeatureIndexPath { get; set; }
Property Value
Default: ""
The directory where the feature index files will be saved.
This property can only be modified before the dataset has been initialized. Attempting to modify it after initialization will cause an exception to be thrown.
Remarks
For performance reasons the ShapefileDataSet scans every data file the first time it is loaded, and for each shapefile it builds an efficient spatial index of all the features in the file. The index is then saved to a file in the directory specified by this property. This process can take several minutes for large shapefiles. The next time the dataset needs to open the file however, the index can be loaded from the saved index file, which is much faster.
If this property is set to an empty string, the feature indices will still be created and held in memory, but not saved to disk.
In almost all cases you should set both this and the IndexPath properties to valid directories, to reduce dataset loading times as much as possible.
Platforms
Windows, Linux, Android