void File::move(const char*fullpath) { simcall_file_move(p_inferior,fullpath); }
/** * \ingroup msg_file_management * \brief Move a file to another location on the *same mount point*. * */ msg_error_t MSG_file_move (msg_file_t fd, const char* fullpath) { msg_file_priv_t priv = MSG_file_priv(fd); return simcall_file_move(priv->simdata->smx_file, fullpath); }