B4A Question FTP delete not empty folder - Erel (first post)    Sep 14, 2022 You will need to change the code that deletes a file or folder to recursively delete the folder: https://www.b4x.com/android/forum/threads/b4x-copyfolder-deletefolder.69820/#content
Be careful...... B4A Tutorial Android FTP tutorial - Erel    Aug 25, 2021   (6 reactions) Sub
Delete
Delete is done by calling FTP.Delete with the full path. Again an event will be raised when...Old and irrelevant tutorial. Follow this one instead: Net library (FTP, SMTP, POP) with Wait For
This tutorial covers the FTP object which is part of the Net library.
The Net library is based... network operations should be done in the background.
The FTP library is built in such a way. All... B4A Library New Net library - Android FTP, SMTP and POP3 - Erel    Oct 6, 2025   (24 reactions)   tags: FTP, ftp smtp pop3, Net, B4A, Email The Net library supports FTP, SMTP and POP3 protocols. This library replaces the FTP library. Both... IPv6 clients. V1.80 - SMTP, POP and FTP can be configured to use a custom trust manager. This allows... a configurable timeout parameter - FTP.TimeoutMs. Default timeout is set to 60000 (60 seconds). V1...-library-ftp-smtp-pop-with-wait-for.84821/ SMTP.AdditionalHeaders map. Allows adding headers to... the content encoding not being set in multipart messages. V1.60 - New method: FTP.AppendFile... B4A Question Help ! delete a file on an ftp server - mangojack (first post)    Oct 13, 2019   (1 reaction) the code to write is ... drum roll ......... ;)
https://www.b4x.com/android/forum/pages/results/?query=ftp+Delete
see the first result , FTP Tutorial ... and the others... B4A Question FTP - get uploaded file name for deletion - Bobi (first post)    Jun 14, 2016 OK. I will take it as is :). Thanks a lot... B4A Library [B4X] FTP Server implemented with Socket and AsyncStreams - Erel    Jul 18, 2022   (41 reactions)   tags: B4A B4J, FTP https://www.b4x.com/images/ftp.gif (Note that the FTP client above is not part of this solution. It only demonstrates how you can use a standard FTP client to communicate with the server.... It is an implementation of a standard FTP server. You can use standard FTP client programs to send or receive files... commands are implemented. The common feature are supported: upload, download, delete, rename, list... when it resumes. Implementing an FTP server that properly supports multiple clients is not a simple... B4A Question FTP Raise and Rel 7.01 - MarcoRome    Aug 5, 2017 worked smoothly
By compiling the same with version 7.01 I noticed that the FTP_DeleteCompleted event...", "ftp.xxxx", 21, "yyyyyuser", "pwuser")
FTP.DeleteFile... Italian Ftp : rename o copy - MARCO C.    Apr 27, 2019 Buongiorno , sapete se esiste un comando o metodo per rinominare un file su un server FTP. Mi spiego meglio : tramite B4J utilizzo il seguente metodo per importare un file FTP.DownloadFile(pathOrder & filename, True, pathDest, filename) e, una volta elaborato il file lo cancello con FTP.DeleteFile(pathOrder & fileInCorso) . Vorrei tenermi copia per sicurezza ... sul server ( poi elimino i file dopo x gg. ) Pensavo di rinominarlo , cambiare nome oppure spostarlo di posizione... B4A Code Snippet [B4X] CopyFolder / DeleteFolder / RecursiveList - Erel    Oct 19, 2025   (26 reactions) .
Recursively deletes a folder and its sub folders:
Sub DeleteFolder (folder As String)
For Each f As String In File.ListFiles(folder)
If File.IsDirectory(folder, f) Then
DeleteFolder(File.Combine(folder, f))
End If
File.Delete(folder, f)
Next
End Sub... B4A Tutorial [B4X] Net library (FTP, SMTP, POP) with Wait For - Erel    Feb 14, 2021   (16 reactions)   tags: FTP, SMTP, POP.Net, B4X Net ftp smtp pop wait . This makes it simpler to manage multiple requests. For example: 'ftp was previously initialized and its event name was set to ftp: 'ftp.Initialize("ftp", "your.server", 21, "user", "password") Dim sf As Object = ftp.UploadFile(File.DirAssets, "somefile", False, "/somefile") Wait For (sf) ftp_UploadCompleted (ServerPath As String...-net-library-android-ftp-smtp-and-pop3.10892/#content Note that B4J and B4A libraries are identical.... Page: 1   2   3   4   5   6   7   |