Add sftp_symlink function.

This commit is contained in:
Andreas Schneider
2009-07-25 11:35:33 +02:00
parent a8ce546f69
commit 11a6ed907d
2 changed files with 96 additions and 0 deletions

View File

@@ -592,6 +592,19 @@ int sftp_chmod(SFTP_SESSION *sftp, const char *file, mode_t mode);
*/
int sftp_utimes(SFTP_SESSION *sftp, const char *file, const struct timeval *times);
/**
* @brief Create a symbolic link.
*
* @param sftp The sftp session handle.
*
* @param target Specifies the target of the symlink.
*
* @param dest Specifies the path name of the symlink to be created.
*
* @return 0 on success, < 0 on error with ssh and sftp error set.
*/
int sftp_symlink(SFTP_SESSION *sftp, const char *target, const char *dest);
/**
* @brief Canonicalize a sftp path.
*