The aftp_local_change_dir call changes the current working directory on the AFTP client. A connection to the AFTP server is not required before using this call.
See AFTP File and Directory Concept for details on how the directory concept is handled for supported operating systems.
AFTP_ENTRY aftp_local_change_dir(
IN AFTP_HANDLE_TYPE connection_id,
IN unsigned char AFTP_PTR directory,
IN AFTP_LENGTH_TYPE length,
OUT AFTP_RETURN_CODE_TYPE AFTP_PTR return_code
);
{
AFTP_HANDLE_TYPE connection_id;
AFTP_RETURN_CODE_TYPE aftp_rc;
/* The value used will vary based on platform:
* VM common naming: directory = "/d"
* VM native naming: directory = "/d"
* MVS PDS common naming: directory = "/user.clist/"
* MVS PDS native naming: directory = "'user.clist'"
* MVS data set prefix common: directory = "/user.qual.a."
* MVS data set prefix native: directory = "'user.qual.a.'"
* NT common naming: directory = "/c:/nt"
* NT native naming: directory = "c:\\nt"
*/
static unsigned char AFTP_PTR directory = "/user.clist/"; /* MVS */
/*
* Before issuing the example call, you must have:
* a connection_id, use: aftp_create()
*/
/*
* Specify the new current working directory name on the AFTP
* client.
*/
aftp_local_change_dir(
connection_id,
directory,
(AFTP_LENGTH_TYPE)strlen(directory),
&aftp_rc);
if (aftp_rc != AFTP_RC_OK) {
fprintf(stderr, "Error changing AFTP directory.\n");
}
}
None.