FTP_PutFile

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > FTP (File Transfer Profotol) >

FTP_PutFile

 

Description

 

Upload file to FTP Server.

 

Syntax

 

n = FTP_PutFile(sFileName, SyncMode)

 

Returns

 

Parameters

 

Name

Type

Optional

Meaning

sFileName

String

No

File name to send.

The file can be also be renamed when it is saved by specifying "oldname:newname" for sFilename

 

Indicate only the file name and not the full path. File will be taken from current local working directory. See FTP_SetLocalDir and FTP_GetLocalDir functions

SyncMode

Number

No

%TRUE or %FALSE

If %TRUE file will be sent in sync mode. Control will be not returned until file will be sent or an error occurs.

If %FALSE file sending will start but control will return immediately. This mode allows to monitor file sending using (for example) the following functions:

FTP_Finished

FTP_GetNumber(%FTP_GET_FILE_BYTES_SENT)

 

 

Remarks

 

Restrictions

 

See also

 

Examples