ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Net functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Warning
This function is kept for backward compatibility. It is recommended to use a standard FTP, SSH or SCP server. For more details, see Handling files on an FTP server and Standard FTP functions.
Deletes a file from the FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV.
Remark: To allow (or not) the use of this function on an FTP/RPC server, call NetServerOption.
Example
FTPServerID is int
Res is int
FTPServerID = NetConnect("148.61.125.245", FTPServer, "GUEST", "")
// Deletes a file from the server
Res = NetEraseFile(FTPServerID, "C:\HISTO\YEAR98.TXT")
IF Res <> 0 THEN
ProcessError() // Procedure for error process
END
Syntax
<Result> = NetEraseFile(<Connection identifier> , <File name>)
<Result>: Integer
Result of the deletion:
  • 0: The file was deleted from the server
  • 2: The file to delete does not exist
  • 5: Access denied
  • 19: Write-protected diskette
<Connection identifier>: Integer
Identifier of the connection for the client computer (returned by NetConnect).
<File name>: ANSI character string
Name and full path of the file to delete from the server.
Component: wd290com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help