Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
#include <iostream>
#include <windows.h>
#include <urlmon.h>
using namespace std;
#pragma comment(lib,"URLMon.lib")
int main()
{
// Datei herunterladen
HRESULT result = URLDownloadToFile(
NULL,
TEXT("http://example.de/download.zip"), // URL zur Datei
TEXT("C:\\Programme\\download.zip"), // Lokaler Name der Datei
0,
NULL);
if (result == S_OK)
{
cout << "Download erfolgreich" << endl;
system("PAUSE");
}
else
{
cout << "Fehler beim Download" << endl;
system("PAUSE");
}
}
#include <iostream>
#include <windows.h>
#include <urlmon.h>
using namespace std;
#pragma comment(lib,"URLMon.lib")
int main()
{
// Datei herunterladen
HRESULT result = URLDownloadToFile(
NULL,
TEXT("http://example.de/download.zip"), // URL zur Datei
TEXT("C:\\Programme\\download.zip"), // Lokaler Name der Datei
0,
NULL);
if (result == S_OK)
{
cout << "Download erfolgreich" << endl;
system("PAUSE");
}
else
{
cout << "Fehler beim Download" << endl;
system("PAUSE");
}
}