Skip to content
Andrew Lambert edited this page May 5, 2017 · 7 revisions

libcURL.CWDMethod

Enum Declaration

Protected Enum CWDMethod
 Multi=1
 None
 Single

Remarks

The CWD method controls how libcURL will traverse FTP directory paths.

CWDMethod Comment
Multi Default, performs separate CWD commands for each subdirectory. This is the least efficient but most compatible method
None Performs all commands by passing the complete path to each command. This is the most efficient but least compatible method
Single Performs a single CWD command using the complete path of the directory and then operates on the file normally. This is a middle-ground between the other two methods

See also

Clone this wiki locally