Function __global->afm_move

Definitions

sources/abstract_file_manager.php

  • Moves a file on the open AFM connection.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$basic_old_path PATH No No required parameter N/A N/A The path to the file we are moving from
$basic_new_path PATH No No required parameter N/A N/A The target path

Preview

Code (PHP)

/**
 * Moves a file on the open AFM connection.
 *
 * @param  PATH $basic_old_path The path to the file we are moving from
 * @param  PATH $basic_new_path The target path
 */

function afm_move(string $basic_old_path, string $basic_new_path)