home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume38 / libftp / part01 / FtpOpenDir.c < prev    next >
C/C++ Source or Header  |  1993-07-13  |  248b  |  14 lines

  1. #include "FtpLibrary.h"
  2.  
  3. STATUS FtpOpenDir(FTP * con,char * file)
  4. {
  5.   char * command;
  6.  
  7.   if ( file == NULL || *file == '\0' )
  8.     command = "NLST";
  9.   else
  10.     sprintf(command,"NLST %s",file);
  11.  
  12.   return FtpCommand(con,command,"",120,150,200,EOF);
  13. }
  14.