Fix for windows

This commit is contained in:
Nikola Petrov 2024-07-19 01:49:34 +02:00
parent 65e30edb8f
commit e0af8874c0
3 changed files with 18 additions and 27 deletions

View File

@ -357,5 +357,5 @@ void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *la
void arg_size(Buffer &encrypted_buffer) void arg_size(Buffer &encrypted_buffer)
{ {
printf("File size is: %ldB\n", encrypted_buffer.taken); printf("File size is: %zuB\n", encrypted_buffer.taken);
} }

View File

@ -1,5 +1,6 @@
#include <iostream> #include <iostream>
#include <string> #include <string>
#include <filesystem>
#include "sys.hpp" #include "sys.hpp"
#include "func.hpp" #include "func.hpp"
@ -79,42 +80,33 @@ std::string get_user_password()
std::optional<std::string> get_save_path() std::optional<std::string> get_save_path()
{ {
PWSTR path = nullptr; namespace fs = std::filesystem;
const char *path = std::getenv("PROGRAMDATA");
HRESULT result = SHGetKnownFolderPath(FOLDERID_ProgramData, 0, nullptr, &path); if (path == nullptr)
if (!SUCCEEDED(result))
{ {
CoTaskMemFree(path); // Free the allocated memory
return {}; return {};
} }
std::wstring userDirectory(path); fs::path userDirectory(path);
CoTaskMemFree(path); // Free the allocated memory userDirectory /= "password_manager";
userDirectory.append(L"\\password_manager"); if (!fs::exists(userDirectory))
DWORD attrib = GetFileAttributes(userDirectory.c_str());
// check if it exists
if (!(attrib != INVALID_FILE_ATTRIBUTES && (attrib & FILE_ATTRIBUTE_DIRECTORY)))
{ {
if (!CreateDirectory(userDirectory.c_str(), nullptr)) // Directory doesn't exist, create it
if (!fs::create_directory(userDirectory))
{
return {}; return {};
}
} }
else if (!fs::is_directory(userDirectory))
userDirectory.append(L"\\save.txt");
int size = WideCharToMultiByte(CP_UTF8, 0, userDirectory.c_str(), -1, nullptr, 0, nullptr, nullptr);
if (size > 0)
{ {
std::string str(size, 0); // Path exists but is not a directory
WideCharToMultiByte(CP_UTF8, 0, userDirectory.c_str(), -1, &str[0], size, nullptr, nullptr); return {};
return str;
} }
return {}; userDirectory /= "save.txt";
return userDirectory.string();
} }
#else #else
@ -123,7 +115,6 @@ std::optional<std::string> get_save_path()
#include <iostream> #include <iostream>
#include <termios.h> #include <termios.h>
#include <unistd.h> #include <unistd.h>
#include <filesystem>
bool put_data_on_clipboard(const char *text) bool put_data_on_clipboard(const char *text)
{ {