Example #1
0
void File::move(const char*fullpath) {
	simcall_file_move(p_inferior,fullpath);
}
Example #2
0
/**
 * \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);
}