unlocker icon indicating copy to clipboard operation
unlocker copied to clipboard

Still working?

Open pepeu93 opened this issue 1 year ago • 2 comments

I tried it with a png file on win10 the file didn't get unlocked.

#include <iostream>
#include "unlocker.h"
int main()
{
    auto file = unlocker::Path::Exists(L"D:/resize.png");
    if (file)
    {
        auto err = file->Unlock();
        std::cout << err;
    }
    std::cout << "Hello World!\n";
}

I tried it with admin rights.

pepeu93 avatar Dec 19 '22 17:12 pepeu93