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