As of OpenSSH 5.1, there is a limited implementation to do this. It does not fully implement the File XFER standard. So I cannot check for things like the file types, but I can scan for the filenames themselves... Using the "sftp.c" code in OpenSSH source I just threw together an adhoc main() that could be changed as needed... I hope that this question can be more thoughly answered at a later date.
/* Username is a NULL terminated string
Host is a NULL terminated string indicating remote IP */
void setup_args(arglist *args, char *username, char *host)
{
// Arg init allocation
memset(args, '\0', sizeof(*args));
args->list = NULL;
// Arg setup
addargs(args, "%s", "/usr/bin/ssh");
addargs(args, "%s", "-oForwardX11 no");
addargs(args, "%s", "-oForwardAgent no");
addargs(args, "%s", "-oPermitLocalCommand no");
addargs(args, "%s", "-oClearAllForwardings yes");
addargs(args, "%s%s", "-l", username);
addargs(args, "%s", "-oProtocol 2");
addargs(args, "%s", "-s");
addargs(args, "%s", host);
addargs(args, "%s", "sftp");
}
void run_program()
{
// Setup connection parameters.
int in, out; // The IO file descriptors.
arglist args;
setup_args(&args, "chenz", "172.16.22.128");
connect_to_server("/usr/bin/ssh", args.list, &in, &out);
freeargs(&args);
// Create connection
struct sftp_conn *conn;
conn = do_init(in, out, copy_buffer_len, num_requests);
if (conn == NULL)
fatal("Couldn't initialise connection to server");
//Get the current directory
char *pwd;
pwd = do_realpath(conn, ".");
printf("PWD: %s\n", pwd);
if (pwd == NULL)
fatal("Need cwd");
SFTP_DIRENT** dirent;
do_readdir(conn, "/home/chenz", &dirent);
int i = 0;
while (dirent[i] != 0) {
printf("filename: %s\n", dirent[i]->filename);
printf("longname: %s\n", dirent[i]->longname);
printf("attrib:\n", dirent[i]->a);
i++;
}
// Clean up file descriptors
close(in);
close(out);
// Wait for kill signal and exit
while (waitpid(sshpid, NULL, 0) == -1)
if (errno != EINTR)
fatal("Couldn't wait for ssh process: %s",
strerror(errno));
//exit(err == 0 ? 0 : 1);
exit(0);
}