Delete multiple files in the current remote directory and its subdirectories.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
void MultipleDelete(
	string remoteDir,
	string wildcard,
	bool recurse
)
Visual Basic
Sub MultipleDelete ( _
	remoteDir As String, _
	wildcard As String, _
	recurse As Boolean _
)
Visual C++
void MultipleDelete(
	String^ remoteDir, 
	String^ wildcard, 
	bool recurse
)

Parameters

remoteDir
Type: System..::..String
remote directory to delete
wildcard
Type: System..::..String
wildcard for specifying files (? for single characters and * for multiple characters)
recurse
Type: System..::..Boolean
if true, recurse down into subdirectories

Remarks

Wildcard characters supported are '?' and '*'. Subdirectories are not deleted

See Also