Search results

  1. G

    Delete file from ftp server

    Problem solved :D I found a code that I altered to my needs and it works great for uploading and for deleting. here it is in case anyone else needs it too. Const FTP_TRANSFER_TYPE_UNKNOWN = &H0 Const FTP_TRANSFER_TYPE_ASCII = &H1 Const FTP_TRANSFER_TYPE_BINARY = &H2 Const...
  2. G

    Delete file from ftp server

    Thanks spikepl, i'll take a look at that :)
  3. G

    Delete file from ftp server

    Hi, I need a little help with a deleting a file from a ftp server. I have the code for uploading but I can't seem to figure out how to delete a file. this is the FTP module I'm using Public Sub UploadFileToFTPServer() On Error GoTo ErrHandler Dim lngRet As Long Dim abytData() As Long Dim...
Back
Top Bottom