Hallo,
when I try to open a specific GeoDbf file, the following error occurs (Stack trace):
bei System.IO.FileSystem.CopyFile(String sourceFullPath, String destFullPath, Boolean overwrite)
bei ThinkGeo.Core.GeoDbf.cB4=(String currentFileName)
bei ThinkGeo.Core.GeoDbf.bx4=(String fileName, FileAccess access)
bei ThinkGeo.Core.GeoDbf.Open()
the code ist very simple
GeoDbf dbf = new GeoDbf()
{
PathFilename = Path.Combine(Path.GetDirectoryName(this.ShapefilePathfilename), Path.GetFileNameWithoutExtension(this.ShapefilePathfilename)) + ".dbf"
};
if (null != this.SelectedEncoding)
{
Encoding encoding = Encoding.GetEncoding(this.SelectedEncoding.TheWebName);
dbf.Encoding = encoding;
}
dbf.Open();
"The process cannot access the file 'C:\\Users\\jobst\\AppData\\Local\\Temp\\002_Rechercheplanung Vopelius Puffer 500m.dbt' because it is being used by another process."
Any suggestions?
Regards Torsten