mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
1659405dc4
Closes #1137 allows loading of tab separated value text file "savpaths.txt" which can also be used to 'favorite' locations (ie, the program checks for duplicate paths and only adds the first). folder availability checked on form creation shortcut: press ctrl-F on main window Thanks @sora10pls !
93 lines
3.2 KiB
C#
93 lines
3.2 KiB
C#
using PKHeX.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
public static class PathUtilWindows
|
|
{
|
|
public static string get3DSLocation()
|
|
{
|
|
try
|
|
{
|
|
string[] DriveList = Environment.GetLogicalDrives();
|
|
for (int i = 1; i < DriveList.Length; i++) // Skip first drive (some users still have floppy drives and would chew up time!)
|
|
{
|
|
string potentialPath = Path.Combine(DriveList[i], "Nintendo 3DS");
|
|
if (Directory.Exists(potentialPath))
|
|
return potentialPath;
|
|
}
|
|
}
|
|
catch { }
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a list of 3DS save backup paths for the storage device.
|
|
/// </summary>
|
|
/// <param name="root">Root location of device</param>
|
|
/// <returns>List of possible 3DS save backup paths.</returns>
|
|
public static string[] get3DSBackupPaths(string root)
|
|
{
|
|
return new[]
|
|
{
|
|
Path.Combine(root, "saveDataBackup"),
|
|
Path.Combine(root, "filer", "UserSaveData"),
|
|
Path.Combine(root, "JKSV", "Saves"),
|
|
Path.Combine(root, "TWLSaveTool"),
|
|
Path.Combine(root, "fbi", "save"),
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Detects a save file.
|
|
/// </summary>
|
|
/// <returns>Full path of a save file. Returns null if unable to find any.</returns>
|
|
public static bool detectSaveFile(out string path, params string[] extra)
|
|
{
|
|
string path3DS = Path.GetPathRoot(get3DSLocation());
|
|
List<string> possiblePaths = new List<string>();
|
|
List<string> foldersToCheck = new List<string>(extra.Where(f => f?.Length > 0));
|
|
path = null;
|
|
|
|
if (path3DS != null) // check for Homebrew/CFW backups
|
|
foldersToCheck.AddRange(get3DSBackupPaths(path3DS));
|
|
|
|
foreach (var p in foldersToCheck)
|
|
{
|
|
IEnumerable<string> files;
|
|
if (!SaveUtil.getSavesFromFolder(p, true, out files))
|
|
{
|
|
if (files == null)
|
|
continue;
|
|
path = files.First(); // error
|
|
return false;
|
|
}
|
|
possiblePaths.AddRange(files);
|
|
}
|
|
|
|
// return newest save file path that is valid
|
|
foreach (var file in possiblePaths.OrderByDescending(f => new FileInfo(f).LastWriteTime))
|
|
{
|
|
try
|
|
{
|
|
var data = File.ReadAllBytes(file);
|
|
var sav = SaveUtil.getVariantSAV(data);
|
|
if (sav?.ChecksumsValid != true)
|
|
continue;
|
|
|
|
path = file;
|
|
return true;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
path = e.Message + Environment.NewLine + file;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|