Hey. Hvordan kan jeg lave et mappe beskyttelses system?
Altså hvor det kører i baggrunden. Hvis du så åbner en eller anden mappe popper den op og siger du SKAL indtaste password for at komme videre ind i den? (:
Jeg har skrevet noget allah:
#include <iostream>
#include <string>
#include <cstdlib>
#include <stdio.h>
#include "dirent.h"
#include <windows.h>
using namespace std;
int main()
{
string folder = "F:\\Privat\\";
DIR *dirp;
struct dirent *entry;
do
{
if(opendir("F:\\Privat\\"))
{
cout << "You have tryed to access a Private folder\nEnter password: " << endl;
string pass;
getline(cin, pass);
if(pass == "test")
{
cout << "You have been granted access to the folder!" << endl;
Sleep(2000);
}
else
{
cout << "Wrong password!\nAction will be archived" << endl;
return 0;
}
}
}while(true);
}