afc_fileops_move

Name

afc_fileops_move  -- Move a file/dir

Synopsis

int afc_fileops_move ( FileOperations * fo, char * source, char * dest );

Description

This function moves a file/dir from one path to another. It can also be used to rename files. It corresponds to the shell command mv.

Inputs

fo

Pointer to a valid FileOperations class.

source

Source file/dir name (with full path) to move or rename

dest

Destination file/dir name (with full path) where to move or rename the source.

Result

Note

See Also