@@ -20,6 +20,7 @@ public partial class Form1 : Form
20
20
public DateTime ? lastDS1Change ;
21
21
public DateTime ? lastDS2Change ;
22
22
public DateTime ? lastDS3Change ;
23
+ public DateTime ? lastDS1RChange ;
23
24
24
25
public Form1 ( )
25
26
{
@@ -64,7 +65,7 @@ public static long DirSize(DirectoryInfo d)
64
65
65
66
private FileInfo getLatestFileInDir ( DirectoryInfo dir )
66
67
{
67
- return dir . GetFiles ( ) . OrderByDescending ( f => f . LastWriteTime ) . First ( ) ;
68
+ return dir . GetFiles ( "*.*" , SearchOption . AllDirectories ) . OrderByDescending ( f => f . LastWriteTime ) . First ( ) ;
68
69
}
69
70
70
71
private FileInfo getOldestFileInDir ( DirectoryInfo dir )
@@ -103,6 +104,12 @@ public void checkSaveLocations()
103
104
PraiseTheSave . Properties . Settings . Default . ds3location = Environment . ExpandEnvironmentVariables ( ds3save ) ;
104
105
}
105
106
107
+ if ( PraiseTheSave . Properties . Settings . Default . ds1Rlocation == "" || ! Directory . Exists ( PraiseTheSave . Properties . Settings . Default . ds1location ) )
108
+ {
109
+ string ds1save = Environment . GetFolderPath ( Environment . SpecialFolder . MyDocuments ) + @"\NBGI\DARK SOULS REMASTERED" ;
110
+ PraiseTheSave . Properties . Settings . Default . ds1Rlocation = Environment . ExpandEnvironmentVariables ( ds1save ) ;
111
+ }
112
+
106
113
PraiseTheSave . Properties . Settings . Default . Save ( ) ;
107
114
}
108
115
@@ -143,7 +150,7 @@ public void refreshInfo()
143
150
}
144
151
else
145
152
{
146
- ds3_found_folder . Text = "found no ds3 saves." ;
153
+ ds1_found_folder . Text = "found no ds1 saves." ;
147
154
}
148
155
149
156
@@ -159,7 +166,7 @@ public void refreshInfo()
159
166
}
160
167
else
161
168
{
162
- ds3_found_folder . Text = "found no ds3 saves." ;
169
+ ds2_found_folder . Text = "found no ds2 saves." ;
163
170
}
164
171
165
172
@@ -176,6 +183,20 @@ public void refreshInfo()
176
183
{
177
184
ds3_found_folder . Text = "found no ds3 saves." ;
178
185
}
186
+
187
+ string ds1Rsave = PraiseTheSave . Properties . Settings . Default . ds1Rlocation ;
188
+ if ( Directory . Exists ( ds1Rsave ) )
189
+ {
190
+ long ds1R_found_folder_size = DirSize ( new DirectoryInfo ( ds1Rsave ) ) ;
191
+ DateTime ds1R_last_change = File . GetLastWriteTime ( getLatestFileInDir ( new DirectoryInfo ( ds1Rsave ) ) . FullName ) ;
192
+
193
+ ds1R_found_folder . Text = "found ds1 remastered saves! total size is " + ( ds1R_found_folder_size / 1024.0 / 1024.0 ) . ToString ( "0.00" ) + "Mb" ;
194
+ ds1R_last_change_label . Text = "last change was at: " + ds1R_last_change . ToString ( ) ;
195
+ }
196
+ else
197
+ {
198
+ ds1R_found_folder . Text = "found no ds1 remastered saves." ;
199
+ }
179
200
}
180
201
181
202
@@ -188,6 +209,7 @@ public void doBackup(object sender, EventArgs e)
188
209
string ds1destination = PraiseTheSave . Properties . Settings . Default . SaveLocation + @"\ds1\" ;
189
210
string ds2destination = PraiseTheSave . Properties . Settings . Default . SaveLocation + @"\ds2\" ;
190
211
string ds3destination = PraiseTheSave . Properties . Settings . Default . SaveLocation + @"\ds3\" ;
212
+ string ds1Rdestination = PraiseTheSave . Properties . Settings . Default . SaveLocation + @"\ds1_remastered\" ;
191
213
192
214
193
215
if ( ! Directory . Exists ( PraiseTheSave . Properties . Settings . Default . SaveLocation ) )
@@ -294,6 +316,37 @@ public void doBackup(object sender, EventArgs e)
294
316
PraiseTheSave . Properties . Settings . Default . LastDS3Change = File . GetLastWriteTime ( getLatestFileInDir ( new DirectoryInfo ( ds3save ) ) . FullName ) ;
295
317
}
296
318
319
+ string ds1Rsave = PraiseTheSave . Properties . Settings . Default . ds1Rlocation ;
320
+ if ( Directory . Exists ( ds1Rsave ) )
321
+ {
322
+ if ( ! Directory . Exists ( ds1Rdestination ) )
323
+ Directory . CreateDirectory ( ds1Rdestination ) ;
324
+
325
+
326
+ if (
327
+ IsDirectoryEmpty ( ds1Rdestination )
328
+ ||
329
+ ! lastDS1RChange . HasValue
330
+ ||
331
+ lastDS1RChange != File . GetLastWriteTime ( getLatestFileInDir ( new DirectoryInfo ( ds1Rsave ) ) . FullName )
332
+ )
333
+ {
334
+ while ( PraiseTheSave . Properties . Settings . Default . SaveAmount <= Directory . GetFiles ( ds1Rdestination ) . Length )
335
+ {
336
+ FileInfo deleteMe = getOldestFileInDir ( new DirectoryInfo ( ds1Rdestination ) ) ;
337
+ deleteMe . Delete ( ) ;
338
+ }
339
+
340
+ using ( ZipFile zip = new ZipFile ( ) )
341
+ {
342
+ zip . AddDirectory ( PraiseTheSave . Properties . Settings . Default . ds1Rlocation ) ;
343
+ zip . Save ( ds1Rdestination + localDate . ToString ( "yyyyMMddHHmmss" ) + ".zip" ) ;
344
+ }
345
+ }
346
+
347
+ PraiseTheSave . Properties . Settings . Default . LastDS1RChange = File . GetLastWriteTime ( getLatestFileInDir ( new DirectoryInfo ( ds1Rsave ) ) . FullName ) ;
348
+ }
349
+
297
350
PraiseTheSave . Properties . Settings . Default . Save ( ) ;
298
351
refreshInfo ( ) ;
299
352
}
@@ -365,6 +418,11 @@ private void ds3link_Click(object sender, EventArgs e)
365
418
System . Diagnostics . Process . Start ( PraiseTheSave . Properties . Settings . Default . ds3location ) ;
366
419
}
367
420
421
+ private void ds1Rlink_Click ( object sender , EventArgs e )
422
+ {
423
+ System . Diagnostics . Process . Start ( PraiseTheSave . Properties . Settings . Default . ds1Rlocation ) ;
424
+ }
425
+
368
426
private void backupFolderLabel_Click ( object sender , EventArgs e )
369
427
{
370
428
System . Diagnostics . Process . Start ( PraiseTheSave . Properties . Settings . Default . SaveLocation ) ;
0 commit comments