Originally posted by: Seeka
If I try to do multiple downloading, GetFtpConnection() fails. It looks like keep on trying to connect and never comes out.
Please help...
ReplyOriginally posted by: Karim Jindani
I had a situation in which I had to download from a particular given directory on a FTP Server. The problem was that I had to dig down all the sub directories and get the whole thing on client PC.
I made a recursive function GetFiles(Root Directory).
It was supposed to work like this.
Download all files from Root directory and when it encounters directory entries it saves the names in a list and then calls the GetFiles function for all directories in the list.
Has anyone done something like this ??
Reply
Originally posted by: KATHY
Hi,how are you.
I have a trouble ,when I use FTP.
I know I must set obj server "PASV",and then set src
server "STOR",then obj server "RETR",begin transfer.
do you have example for it use API,please help me,thanks.
Originally posted by: zK Tan
Hi,
I am writing a Liveupdate software that run like the LiveUpdate in Norton Anti-Virus. But I am having problems when writing this program using Embedded Visual Tool Kit 3.00 as i could not synchronize perfectly, it only download the whole thing. I am glad if anyone would give me any information on my problem.
Trouble,
zK
Originally posted by: sasikala.v.b.
itz good
Originally posted by: Matthias Zronek
Hi,
I tried to write a program which works a bit like Visual SourceSafe, it updates files on a FTP server, but I have problems to get the status of the files on my server.
CInternetFile *pFile = m_pConnection->OpenFile(szFile))
_ASSERT(pFile)
{
CFileStatus FStatus;
_ASSERT(pFile->GetStatus(FStatus));
// ...
}
I don't get assertions nevertheless every member variable of FStatus is 0, after the GetStatus() call. What's going on?
Thanks in advance,
MZ
Originally posted by: Vito Perrotta
Good Morning,
I create an application that retrieve via FTP some files from a Web Site. This application uses wininet.dll and execute all jobs in background. The problem is an error "407 Proxy-Authentication required" . I realize that the solution is adding an Http request string with Username:Passord required.
How can I implement this solution?
How can I by-pass Proxy Authentication programatically ?
Thanks
Vito Perrotta
ReplyOriginally posted by: Andy Hush
I'm using CFtpConnection to connect to an NT 4.0 box. I then use CFtpFileFind to get a list of files. FindNextFile() and GetFileName() work fine. But IsReadOnly() always returns zero, even when the file is read-only.
This fails on multiple machines that I've tried it on.
Is this a known bug? Does anyone have a workaround? I can't find anything on Microsoft's site.
ReplyOriginally posted by: M Pereira
What is the speed of large download ? Can I have the data encrypted during transfer
Reply
Originally posted by: John Jin
On unix machine, you can create a link to a directory. In that case, pFileFind->IsDirectory())will return false. The only workaround I can think of is to use SetCurrentDirectory to test whether it is a dir or file.
John Jin
Reply