Skip to content

Commit db610c3

Browse files
committed
New flag to keep modified files, change default for overwrite
add: new flag keep_modified_files, default to false mod: changed default of overwrite_existing from False to True
1 parent 4e6b664 commit db610c3

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

movfs4l.py

+21-7
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ def iodelay(s):
2323
use_lower = False
2424
pathcache = {}
2525
use_hardlinks = False
26-
overwrite_existing = False
26+
overwrite_existing = True
27+
keep_modified_files = False
2728
vfs_log = {'dirs': [], 'links': [], 'backups': [], 'hard_links' : False, 'timestamp' : 0}
2829

2930

@@ -58,16 +59,23 @@ def create_link(src, dst):
5859
return
5960

6061

62+
def is_modified_file(path):
63+
global vfs_log
64+
if "timestamp" in vfs_log and vfs_log["timestamp"] > 0 and os.path.getmtime(path) > vfs_log["timestamp"] + 60 and ('/Data' in path or '/data' in path):
65+
return True
66+
return False
67+
68+
6169
def remove_link(path):
62-
global use_hardlinks, vfs_log
70+
global use_hardlinks, vfs_log, keep_modified_files
6371

6472
if not os.path.exists(path):
6573
return
6674

6775
# if file was modified after we have linked, don't remove it (FNIS/CBBE)
6876
# only do this for files in Data, always unlink like modlist, plugins, loadorder, inis
69-
if "timestamp" in vfs_log and vfs_log["timestamp"] > 0 and os.path.getmtime(path) > vfs_log["timestamp"] + 60 and ('/Data' in path or '/data' in path):
70-
plog("File is newer than linking date: %s" % (
77+
if keep_modified_files == True and is_modified_file(path):
78+
plog("File is newer than linking date, not removing: %s" % (
7179
path
7280
))
7381
return
@@ -678,7 +686,8 @@ def get_default_variables(variables):
678686
"link_inis": "false",
679687
"fake_inis": "false",
680688
"hard_links": False,
681-
"overwrite_existing": False
689+
"overwrite_existing": True,
690+
'keep_modified_files': False
682691
}
683692

684693
for var in defaults:
@@ -1196,7 +1205,10 @@ def unvfs(p):
11961205
for b in vfs_log.get('backups', []):
11971206
b = winpath(b)
11981207
prettyprint(i, b.replace(head, ""))
1199-
shutil.move('%s.unvfs' % b, b)
1208+
if keep_modified_files == False or is_modified_file(b) == False:
1209+
shutil.move('%s.unvfs' % b, b)
1210+
else:
1211+
os.remove('%s.unvfs' % b)
12001212
i += 1
12011213
stop_prettyprint(t)
12021214

@@ -1235,7 +1247,8 @@ def parsebool(value):
12351247
"unvfs",
12361248
"generate_config",
12371249
'hard_links',
1238-
'overwrite_existing'
1250+
'overwrite_existing',
1251+
'keep_modified_files'
12391252
]
12401253

12411254
swallowargs = [
@@ -1302,6 +1315,7 @@ def parseargs():
13021315

13031316
use_hardlinks = args["hard_links"]
13041317
overwrite_existing = args["overwrite_existing"]
1318+
keep_modified_files = args["keep_modified_files"]
13051319

13061320
# When requesting to unlink, check the log if the links were created
13071321
# with hardlinks. This is to make sure we correctly remove them even

0 commit comments

Comments
 (0)