On this page
protected function FileTransferLocal::removeFileJailed
protected FileTransferLocal::removeFileJailed($file)
  Removes a file.
Parameters
$destination: The destination file to be removed.
Overrides FileTransfer::removeFileJailed
File
- includes/filetransfer/local.inc, line 50
 
Class
- FileTransferLocal
 - The local connection class for copying files as the httpd user.
 
Code
protected function removeFileJailed($file) {
  if (@!drupal_unlink($file)) {
    throw new FileTransferException('Cannot remove file %file.', NULL, array('%file' => $file));
  }
}
  © 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
 https://api.drupal.org/api/drupal/includes!filetransfer!local.inc/function/FileTransferLocal::removeFileJailed/7.x