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...
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...