vote up 2 vote down star

What would be the best way to do an scp or sftp copy in a unix environment using C. I'm interested in knowing the best library to use and an example if at all possible. I'm working on a solaris server with the sun tools installed.

flag

36% accept rate

4 Answers

vote up 3 vote down check

libssh2, perhaps? I have used the perl binding successfully to scp/sftp files, so I'm assuming it is not much harder to do the same with the core c API.

link|flag
vote up 0 vote down

In the past I've simply called a shell script that contains the file transfer code.

int transferFile()
{
  //declare the transfer command
  char transferCommand[50] = "/home/tyler/transferFile.shl";
  //execute the command
  return system(transferCommand);
}

This will return 1 if the transfer command returns successfully.

link|flag
vote up 0 vote down

I'm not really a C expert, but I think you can use system() to run OS commands. This would assume that you don't actually want to re-implement scp, just use it.

link|flag
vote up 0 vote down

I've always just used the system() command. Of course doing this requires that you have ssh keys properly installed between the client and target machine so that it doesn't prompt for the password.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.