WP_Filesystem_ftpsockets::delete() WordPress Method

The WP_Filesystem_ftpsockets::delete() function is used to delete a file or directory from an FTP server. This function takes two parameters: the path to the file or directory to be deleted, and the recursive flag. If the recursive flag is set to true, the function will delete all files and directories in the specified path.

WP_Filesystem_ftpsockets::delete( string $file, bool $recursive = false, string|false $type = false ) #

Deletes a file or directory.


Parameters

$file

(string)(Required)Path to the file or directory.

$recursive

(bool)(Optional) If set to true, deletes files and folders recursively.

Default value: false

$type

(string|false)(Optional)Type of resource. 'f' for file, 'd' for directory.

Default value: false


Top ↑

Return

(bool) True on success, false on failure.


Top ↑

Source

File: wp-admin/includes/class-wp-filesystem-ftpsockets.php

	public function delete( $file, $recursive = false, $type = false ) {
		if ( empty( $file ) ) {
			return false;
		}

		if ( 'f' === $type || $this->is_file( $file ) ) {
			return $this->ftp->delete( $file );
		}

		if ( ! $recursive ) {
			return $this->ftp->rmdir( $file );
		}

		return $this->ftp->mdel( $file );
	}


Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.