Home | Trees | Index | Help |
---|
Package pyGlobus :: Module ftpClient :: Class BaseFtpClient |
|
EasyFtpClient
,
FtpClient
Method Summary | |
---|---|
__init__(self)
| |
Abort the current operation. | |
Add a plugin to an FTP client handle. | |
Cache the connection to the FTP server. | |
delete(self,
*argslist)
| |
exists(self,
*argslist)
| |
Remove the url from the connection cache. | |
get(self,
*argslist)
| |
Return the underlying ftp client handle. | |
Returns the user data associated with the handle. | |
list(self,
*argslist)
| |
mkdir(self,
*argslist)
| |
modification_time(self,
*argslist)
| |
move(self,
*argslist)
| |
partial_get(self,
*argslist)
| |
partial_put(self,
*argslist)
| |
partial_third_party_transfer(self,
*argslist)
| |
put(self,
*argslist)
| |
Remove a plugin to an FTP client handle. | |
rmdir(self,
*argslist)
| |
Associate some data with the handle. | |
size(self,
*argslist)
| |
third_party_transfer(self,
*argslist)
| |
verbose_list(self,
*argslist)
|
Method Details |
---|
abort(self)Abort the current operation.
|
add_plugin(self, plugin)Add a plugin to an FTP client handle. This function adds a plugin to an FTP client handle after it has been created. Plugins may be added to an ftp client handle whenever an operation is not in progress. The plugin will be appended to the list of plugins present in the handle, and will be invoked during any subsequent operations processed with this handle. Only one instance of a particular plugin may be added to a particular handle.
|
cache_url_state(self, url)Cache the connection to the FTP server. When the url is cached, the library will not close the connection after completing an operation.
|
flush_url_state(self, url)Remove the url from the connection cache. If an idle connection to the server exists, it will be closed.
|
get_handle(self)Return the underlying ftp client handle.
|
get_user_data(self)Returns the user data associated with the handle. Access to this data is not synchronized.
|
remove_plugin(self, plugin)Remove a plugin to an FTP client handle. This function removes a plugin from an FTP client handle after it has been created. Plugins may be removed from an ftp client handle whenever an operation is not in progress. The plugin will be removed from the list of plugins, and will not be used during any subsequent operations processed with this handle.
|
set_user_data(self, data)Associate some data with the handle. Access to this data is not synchronized.
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Tue Apr 4 14:32:55 2006 | http://epydoc.sf.net |