change arg_file to use filesystem insted of using a string for path
This commit is contained in:
parent
09548dabd8
commit
15ee96b17d
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user