@@ -23,7 +23,8 @@ def iodelay(s):
23
23
use_lower = False
24
24
pathcache = {}
25
25
use_hardlinks = False
26
- overwrite_existing = False
26
+ overwrite_existing = True
27
+ keep_modified_files = False
27
28
vfs_log = {'dirs' : [], 'links' : [], 'backups' : [], 'hard_links' : False , 'timestamp' : 0 }
28
29
29
30
@@ -58,16 +59,23 @@ def create_link(src, dst):
58
59
return
59
60
60
61
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
+
61
69
def remove_link (path ):
62
- global use_hardlinks , vfs_log
70
+ global use_hardlinks , vfs_log , keep_modified_files
63
71
64
72
if not os .path .exists (path ):
65
73
return
66
74
67
75
# if file was modified after we have linked, don't remove it (FNIS/CBBE)
68
76
# 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" % (
71
79
path
72
80
))
73
81
return
@@ -678,7 +686,8 @@ def get_default_variables(variables):
678
686
"link_inis" : "false" ,
679
687
"fake_inis" : "false" ,
680
688
"hard_links" : False ,
681
- "overwrite_existing" : False
689
+ "overwrite_existing" : True ,
690
+ 'keep_modified_files' : False
682
691
}
683
692
684
693
for var in defaults :
@@ -1196,7 +1205,10 @@ def unvfs(p):
1196
1205
for b in vfs_log .get ('backups' , []):
1197
1206
b = winpath (b )
1198
1207
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 )
1200
1212
i += 1
1201
1213
stop_prettyprint (t )
1202
1214
@@ -1235,7 +1247,8 @@ def parsebool(value):
1235
1247
"unvfs" ,
1236
1248
"generate_config" ,
1237
1249
'hard_links' ,
1238
- 'overwrite_existing'
1250
+ 'overwrite_existing' ,
1251
+ 'keep_modified_files'
1239
1252
]
1240
1253
1241
1254
swallowargs = [
@@ -1302,6 +1315,7 @@ def parseargs():
1302
1315
1303
1316
use_hardlinks = args ["hard_links" ]
1304
1317
overwrite_existing = args ["overwrite_existing" ]
1318
+ keep_modified_files = args ["keep_modified_files" ]
1305
1319
1306
1320
# When requesting to unlink, check the log if the links were created
1307
1321
# with hardlinks. This is to make sure we correctly remove them even
0 commit comments