OBSOLETE
This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.
FtpHelper
Contains helpers which allow to upload a whole folder/specific file into a FTP Server.
Uses Passive Mode
FTP and handles all files as binary (and not ASCII).
Assumes direct network connectivity to destination FTP server (not via a proxy).
Does not support FTPS and SFTP.
Nested types and modules
Type | Description |
FtpServerInfo |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. |
Functions and values
Function or value | Description |
createAFolder server user pwd destPath
Signature: server:string -> user:string -> pwd:string -> destPath:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Creates a matching folder in FTP folder, if not already present. Parameters
|
deleteAFile server user pwd destPath
Signature: server:string -> user:string -> pwd:string -> destPath:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Deletes a single file from remote FTP folder. Parameters
|
deleteAFolder server user pwd destPath
Signature: server:string -> user:string -> pwd:string -> destPath:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Deletes a single folder from remote FTP folder. Parameters
|
getFtpDirContents(...)
Signature: server:string -> user:string -> pwd:string -> dirPath:string -> string
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Gets the contents/listing of files and folders in a given FTP server folder Parameters
|
getServerInfo(...)
Signature: serverNameIp:string -> user:string -> password:string -> ftpMethod:string -> FtpServerInfo
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Gets a connection to the FTP server |
isFolderPresent server user pwd destPath
Signature: server:string -> user:string -> pwd:string -> destPath:string -> bool
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Given a folder path, will check if that folder is present at a given root directory of a FTP server. Parameters
|
regexCheck fname ftpContents
Signature: fname:string -> ftpContents:string -> bool
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Checks to see if the |
uploadAFile(...)
Signature: server:string -> user:string -> pwd:string -> destPath:string -> srcPath:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Uploads a single file from local directory into remote FTP folder. Parameters
|
uploadAFolder(...)
Signature: server:string -> user:string -> pwd:string -> srcPath:string -> rootDir:string -> unit
Attributes: [<Obsolete("This API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module.")>] |
OBSOLETEThis API is obsolete. There is no alternative in FAKE 5 yet. You can help by porting this module. Uploads a given local folder to a given root dir on a FTP server. Parameters
|