ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / FTP functions
  • Timeout
  • Rights of users
  • Relative and absolute path
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the different times (creation, modification or access) associated with a file found on an FTP server (File Transfer Protocol).
// Find out the time of modification made to
// "/Documents/File.txt" on the FTP server
ResTime = FTPTime(7, "/Documents/File.txt")
Syntax

Finding out the different times associated with the last file viewed Hide the details

<Result> = FTPTime([<Type of time>])
<Result>: Character string
  • Time (in HHMMSS format) associated with the last file accessed by one of the following FTP functions: FTPAttribute, FTPDate, FTPSize, FTPListFile.
  • Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo with the errMessage constant.
Unlike the syntax 2, no request is sent to the server. Therefore, this syntax is recommended whenever possible.
<Type of time>: Optional constant
Indicates the time to use:
ftpAccessTime of last access to the file.
ftpCreationTime of file creation.
ftpModification
(Default value)
Time of last modification made to the file.

Finding out the different times associated with the specified file Hide the details

<Result> = FTPTime(<Connection identifier> , <File name> [, <Type of time>])
<Result>: Character string
  • Time associated with the specified file (in HHMMSS format),
  • Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo with the errMessage constant.
<Connection identifier>: Integer
Connection identifier, returned by FTPConnect.
<File name>: Character string
Name and full (or relative) path of the file be accessed. The different path sections are separated by "slashes" ("/").
<Type of time>: Optional constant
Indicates the time to use:
ftpAccessTime of last access to the file.
ftpCreationTime of file creation.
ftpModification
(Default value)
Time of last modification made to the file.

Remarks

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.

Rights of users

Only a user who has read rights on the FTP server can get information about the files or the directories found on an FTP server. In most cases, the read rights are granted to the "anonymous" users.

Relative and absolute path

The notions of relative path and absolute path are very important in an FTP application.
  • A path starting with a slash is considered as being an absolute path: it is the path in relation to the root of the FTP server (parameter specific to the server).
    Example: /ad/user/JULIA
  • A path not starting with a slash is considered as being a relative path, which means a path given in relation to the current directory. This current directory can be returned or modified by FTPCurrentDir.
When connecting to an FTP site, the initial directory (the "home directory" of the user) is not necessarily found at the root of the FTP server. Therefore, we recommend that you use relative paths.
Component: wd290com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help