WordPress 4.4 failed to update themes and plugins

If you use WordPress 4.4 and you failed to update themes and plugins you have to follow these steps:

Login to your ftp and go wp-admin ->> includes and edit class-wp-filesystem-ftpext.php
Change:
$file_list = @ftp_nlist( $this->link, ‘-a ‘ . $path );
With:
$file_list = @ftp_nlist( $this->link, $path );

Now you will be able to update again wordpress plugins and themes with no problem!