Part of twisted.protocols.ftp View Source View In Hierarchy
IFTPShell.
Split Table into Classes Show Methods in One Table
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 1710 | Method | makeDirectory | Create a directory. |
| 1722 | Method | removeDirectory | Remove a directory. |
| 1739 | Method | removeFile | Remove a file. |
| 1756 | Method | rename | Rename a file or directory. |
| 1769 | Method | openForWriting | Reject write attempts by anonymous users with |
Inherited from FTPAnonymousShell:
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 1521 | Method | __init__ | Undocumented |
| 1545 | Method | receive | Undocumented |
| 1550 | Method | openForReading | |
| 1574 | Method | access | Determine whether access to the given path is allowed. |
| 1591 | Method | stat | Retrieve information about the given path. |
| 1606 | Method | list | Return the list of files at given path, adding
keys stat
|
| 1525 | Method | _path | Undocumented |
| 1642 | Method | _statNode | Shortcut method to get stat info on a node. |
| 1661 | Method | _stat_owner | Undocumented |
| 1670 | Method | _stat_group | Undocumented |
| 1679 | Method | _stat_directory | Undocumented |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 1521 | Method | __init__ | Undocumented |
| 1574 | Method | access | Determine whether access to the given path is allowed. |
| 1606 | Method | list | Return the list of files at given path, adding
keys stat
|
| 1710 | Method | makeDirectory | Create a directory. |
| 1550 | Method | openForReading | |
| 1769 | Method | openForWriting | Reject write attempts by anonymous users with |
| 1545 | Method | receive | Undocumented |
| 1722 | Method | removeDirectory | Remove a directory. |
| 1739 | Method | removeFile | Remove a file. |
| 1756 | Method | rename | Rename a file or directory. |
| 1591 | Method | stat | Retrieve information about the given path. |
| 1525 | Method | _path | Undocumented |
| 1679 | Method | _stat_directory | Undocumented |
| 1670 | Method | _stat_group | Undocumented |
| 1661 | Method | _stat_owner | Undocumented |
| 1642 | Method | _statNode | Shortcut method to get stat info on a node. |
| Parameters | path | The path, as a list of segments, to create
(type: list of unicode
) |
| Returns | A Deferred which fires when the directory has been created, or which fails if the directory cannot be created. | |
| Parameters | path | The path, as a list of segments, to remove
(type: list of unicode
) |
| Returns | A Deferred which fires when the directory has been removed, or which fails if the directory cannot be removed. | |
| Parameters | path | The path, as a list of segments, to remove
(type: list of unicode
) |
| Returns | A Deferred which fires when the file has been removed, or which fails if the file cannot be removed. | |
| Parameters | fromPath | The current name of the path.
(type: list of unicode
) |
| toPath | The desired new name of the path.
(type: list of unicode
) | |
| Returns | A Deferred which fires when the path has been renamed, or which fails if the path cannot be renamed. | |
PermissionDeniedError.