/* An example of using the RexxInet functions to list a directory * on an Ftp site. */ /* ========================= STEP 1 ========================== * Load RexxInet functions. Set up error handling for RexxInet. * Have it raise ERROR condition. This is done once at the * start of our script. */ /* Load REXXINET.DLL and register all its functions. */ LIBRARY rexxinet InetErr = "ERROR" InetHeading = 1 /* ========================= STEP 2 ========================== * Make sure we're connected to the internet (if a dial-up * account), and initialize RexxInet. */ DO /* Make sure we're connected to the internet. If not, * automatically connect the default account. */ InetDial("ONLINE") /* Initialize REXXINET. We tell WinINet that our script name is "My test" */ InetOpen(, , "My test") /* Let's CATCH ERROR so we don't have to error check * any of the above calls to RexxINet functions. Yay! */ CATCH ERROR CONDITION('M') RETURN END /* ========================= STEP 3 ========================== * List the contents of a directory. */ /* Here's the FTP server hosting the files/dirs I want to list. * I could pass this directly to InetConnect if desired. */ myFtpSite = "ftp.microsoft.com" /* Connect to the server, and save the handle in "MyFtpHandle". */ InetConnect("MyFtpHandle", myFtpSite, "FTP") /* Set the current directory to "peropsys". */ InetDir("peropsys") /* Get the next file/dir and store information in the variable * "dirInfo". Note: If there are no more matching files, then * "DONE" is returned. NOTE: No condition is raised in that * event, even if we've set InetErr to do so for errors. */ DO WHILE InetMatchName("dirInfo") == "" /* Display the name. */ CHAROUT(, dirInfo) /* If it's a directory, display