Home | Trees | Index | Help |
---|
Package paramiko :: Class SFTP |
|
object
--+ |BaseSFTP
--+ |SFTPClient
--+ | SFTP
SFTPClient
for backwards compatability
Method Summary | |
---|---|
Inherited from SFTPClient | |
Create an SFTP client from an existing Channel . | |
| |
Change the "current directory" of this SFTP session. | |
Change the mode (permissions) of a file. | |
Change the owner ( uid ) and group (gid ) of a
file. | |
Close the SFTP session and its underlying channel. | |
SFTPFile |
Open a file on the remote server. |
SFTPClient
|
Create an SFTP client channel from an open Transport . (Class method)
|
Copy a remote file ( remotepath ) from the SFTP server to
the local host as localpath . | |
str |
Return the "current working directory" for this SFTP session, as emulated by paramiko. |
list of str |
Return a list containing the names of the entries in the given path . |
list of SFTPAttributes
|
Return a list containing SFTPAttributes objects corresponding to
files in the given path . |
SFTPAttributes |
Retrieve information about a file on the remote system, without following symbolic links (shortcuts). |
Create a folder (directory) named path with numeric mode
mode . | |
str |
Return the normalized path (on the server) of a given path. |
SFTPFile |
Open a file on the remote server. |
Copy a local file ( localpath ) to the SFTP server as
remotepath . | |
str |
Return the target of a symbolic link (shortcut). |
Remove the file at the given path. | |
Rename a file or folder from oldpath to
newpath . | |
Remove the folder named path . | |
SFTPAttributes |
Retrieve information about a file on the remote system. |
Create a symbolic link (shortcut) of the source path at
destination . | |
Remove the file at the given path. | |
Set the access and modified times of the file specified by path . | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sun Dec 4 11:16:47 2005 | http://epydoc.sf.net |