|
|
|
|
|
__enter__(self)
Support for "with" statement, this will trigger UriHandler
connection setup. |
source code
|
|
|
|
__exit__(self,
exc_type,
exc_value,
traceback)
Support for "with" statement, this will trigger UriHandler
connection hang up. |
source code
|
|
|
string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
bool
|
upload(self,
load_path,
remote_path)
Upload URI from load_path location to uri. |
source code
|
|
|
bool
|
rename(self,
remote_path_old,
remote_path_new)
Rename URI old to URI new. |
source code
|
|
|
bool
|
|
|
string or None (if not supported)
|
|
|
list
|
|
|
list
|
list_content_metadata(self,
remote_path)
List content of directory referenced at URI with metadata in this
form: [(name, size, owner, group, permissions<drwxr-xr-x>,),
...] permissions, owner, group, size, name. |
source code
|
|
|
bool
|
is_path_available(self,
remote_path)
Given a remote path (which can point to dir or file), determine
whether it's available or not. |
source code
|
|
|
bool
|
is_dir(self,
remote_path)
Given a remote path (which can point to dir or file), determine
whether it's a directory. |
source code
|
|
|
bool
|
is_file(self,
remote_path)
Given a remote path (which can point to dir or file), determine
whether it's a file. |
source code
|
|
|
|
makedirs(self,
remote_path)
Given a remote path, recursively create all the missing directories. |
source code
|
|
|
|
|
|
|
close(self)
Called when requesting to close connection completely. |
source code
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
Inherited from output.TextInterface:
askQuestion,
cycleDone,
inputBox,
nocolor,
notitles,
setTitle,
setTotalCycles,
updateProgress
|