Added backup copy creation during keys.dat write to prevent an accidental file loss due to the disk failure.
This commit is contained in:
parent
34824c044e
commit
d3c91eea3b
|
@ -20,6 +20,7 @@ import sys
|
||||||
import stat
|
import stat
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
|
import shutil # used for moving the data folder and copying keys.dat
|
||||||
from os import path, environ
|
from os import path, environ
|
||||||
from struct import Struct
|
from struct import Struct
|
||||||
|
|
||||||
|
@ -799,8 +800,14 @@ def openKeysFile():
|
||||||
os.startfile(shared.appdata + 'keys.dat')
|
os.startfile(shared.appdata + 'keys.dat')
|
||||||
|
|
||||||
def writeKeysFile():
|
def writeKeysFile():
|
||||||
with open(shared.appdata + 'keys.dat', 'wb') as configfile:
|
fileName = shared.appdata + 'keys.dat'
|
||||||
|
# create a backup copy to prevent the accidental loss due to the disk write failure
|
||||||
|
shutil.copyfile(fileName, fileName + '.bak')
|
||||||
|
# write the file
|
||||||
|
with open(fileName, 'wb') as configfile:
|
||||||
shared.config.write(configfile)
|
shared.config.write(configfile)
|
||||||
|
# delete a backup
|
||||||
|
os.remove(fileName + '.bak')
|
||||||
|
|
||||||
helper_startup.loadConfig()
|
helper_startup.loadConfig()
|
||||||
from debug import logger
|
from debug import logger
|
||||||
|
|
Loading…
Reference in New Issue
Block a user