- Procedure that handles each listed file
- Transfer timeout
- Required permissions
FTPListFile (Function) In french: FTPListeFichier Lists the files (and/or the directories) found in a directory of an FTP server and returns the number of listed files (and/or directories) The listed files are searched in the given directory. For each found file, FTPListFile automatically calls a specific procedure. This procedure is used to handle the current file. This procedure must return a result (True to continue to list the directories and/or the files, False to stop). Caution: This function is not recursive. The search is performed in the specified directory, while ignoring the sub-directories.
Syntax
<Result> = FTPListFile(<Connection identifier> , <Path and generic name of files> , <WLanguage procedure> [, <Files/Directories> [, <Parameter>]])
<Result>: Integer - Number of listed files,
- 0 (if an error occurred). To determine if this function has generated an error, use ErrorInfo with the errMessage constant.
<Connection identifier>: Integer Connection identifier, returned by FTPConnect. <Path and generic name of files>: Character string Path and generic name of files (or directories) to list. Generic characters (* and?) are allowed. The different path sections are separated by "slashes" ("/").If the path has the following format "/<DirectoryName>/<FileName>": The search path is "/<Directory name>/<File name>". If the path has the following format "<DirectoryName>/<FileName>": The search path is "/<Current server directory>/<Directory name>/<File name>". <WLanguage procedure>: Procedure name Name of the WLanguage procedure ("callback") called for each listed file. This procedure is used to handle the current file. To force the browse operation to stop, the procedure must return False and to continue the browse operation, the procedure MUST return True. For more details on this procedure, see Parameters of the procedure used by FTPListFile. <Files/Directories>: Optional constant (or combination of constants) Specifies the searched elements:
| | ftpDirectory | The search is performed on the directories. | ftpFile | The search is performed on the files only. | By default, this parameter is set to ftpFile+ftpDirectory: the search is performed on the files and directories. <Parameter>: Type corresponding to the value passed (optional) Parameter passed to the procedure <Procedure name>. Remarks Procedure that handles each listed file Caution: In <WLanguage procedure>: - no FTP function that uses the same connection as the one used by FTPListFile must be called.
- you can retrieve the properties (name, size, attributes, dates and times) of the file listed by FTPName, FTPSize, FTPAttribute, FTPDate and FTPTime. However, this solution takes a lot of time: it requires an additional request to the FTP server. Therefore, it is easier to directly read the optional parameters passed to the <WLanguage procedure>.
Transfer timeout By default, all the FTP functions fail if the FTP server does not respond within 20 seconds. This timeout can be modified with FTPConnect when connecting to the FTP server.
Related Examples:
|
Unit examples (WINDEV): The FTP functions
[ + ] Using the main FTP functions of WINDEV: - Connect to a FTP server - List the files and directories found on the FTP server - Retrieve the files found on the FTP server - Disconnect from a FTP server
|
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|