From 15ee96b17de02f1b50210f303291b5b701941d22 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Sun, 4 Feb 2024 20:47:56 +0100 Subject: [PATCH] change arg_file to use filesystem insted of using a string for path --- source/arg_func.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/arg_func.cpp b/source/arg_func.cpp index 0a2ed3c..95ad608 100644 --- a/source/arg_func.cpp +++ b/source/arg_func.cpp @@ -3,6 +3,7 @@ #include #include #include +#include #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))