change arg_file to use filesystem insted of using a string for path

This commit is contained in:
Nikola Petrov 2024-02-04 20:47:56 +01:00
parent 09548dabd8
commit 15ee96b17d

View File

@ -3,6 +3,7 @@
#include <sstream>
#include <fstream>
#include <cstring>
#include <filesystem>
#include "arg_func.hpp"
#include "func.hpp"
@ -310,11 +311,14 @@ void arg_show(Buffer &decrypted_buffer, const char *label)
void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto, std::string &save_location_path)
{
std::string save(label);
save.append("\\passwords.bin");
namespace fs = std::filesystem;
fs::path save(label);
save /= "passwords.bin";
std::ofstream file(save_location_path, std::ios::binary);
file << save << std::endl;
file << save.string() << std::endl;
file.close();
if (decrypted_buffer.taken <= sizeof(Index))