Fix so that a copy is created, if new filename already exists. Works like normal XML export.
svn: r13493
This commit is contained in:
parent
ce3c465ef5
commit
f8d54b64bc
@ -31,6 +31,7 @@
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
import time
|
||||
import shutil
|
||||
import os
|
||||
import sys
|
||||
import tarfile
|
||||
@ -70,6 +71,16 @@ import Utils
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
def writeData(database, filename, option_box=None, callback=None):
|
||||
# Rename file, if it exists already, with <filename>.bak
|
||||
# as it it for normal XML export.
|
||||
|
||||
if os.path.isfile(filename):
|
||||
try:
|
||||
shutil.copyfile(filename, filename + ".bak")
|
||||
shutil.copystat(filename, filename + ".bak")
|
||||
except:
|
||||
pass
|
||||
|
||||
if option_box:
|
||||
option_box.parse_options()
|
||||
|
||||
@ -242,4 +253,4 @@ plugin = ExportPlugin(name = _('GRAM_PS package (portable XML)'),
|
||||
export_function = writeData,
|
||||
extension = "gpkg",
|
||||
config = _config )
|
||||
pmgr.register_plugin(plugin)
|
||||
pmgr.register_plugin(plugin)
|
||||
|
Loading…
x
Reference in New Issue
Block a user