- Timeout
- Rights of users
- Relative and absolute path
- Required permissions
FTPMakeDir (Function) In french: FTPRepCrée Creates a directory on an FTP server (File Transfer Protocol).
Syntax
<Result> = FTPMakeDir(<Connection identifier> , <Directory to create>)
<Result>: Boolean - True if the directory was created,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Connection identifier>: Integer Connection identifier, returned by FTPConnect. <Directory to create>: Character string Name and (full or relative) path of directory to create. The different path sections are separated by "slashes" ("/"). The directories are created recursively: there is no need to create the different levels of directories one by one. 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 write rights on the FTP server can handle the files or the directories found on an FTP server. In most cases, no write 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).
ex: /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.
This page is also available for…
|
|
|
|