Part of twisted.protocols.ftp View Source View In Hierarchy
IFTPShell.
| Method | makeDirectory | Create a directory. | 
| Method | removeDirectory | Remove a directory. | 
| Method | removeFile | Remove a file. | 
| Method | rename | Rename a file or directory. | 
| Method | openForWriting | Reject write attempts by anonymous users with PermissionDeniedError. | 
Inherited from FTPAnonymousShell:
| Method | __init__ | Undocumented | 
| Method | receive | Undocumented | 
| Method | openForReading | |
| Method | access | Determine whether access to the given path is allowed. | 
| Method | stat | Retrieve information about the given path. | 
| Method | list | Return the list of files at given path, addingkeysstat informations if specified. | 
| Method | _path | Undocumented | 
| Method | _statNode | Shortcut method to get stat info on a node. | 
| Method | _stat_owner | Undocumented | 
| Method | _stat_group | Undocumented | 
| Method | _stat_directory | Undocumented | 
| Parameters | path | The path, as a list of segments, to create
 (type: listofunicode) | 
| 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: listofunicode) | 
| 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: listofunicode) | 
| 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: listofunicode) | 
| toPath | The desired new name of the path.
 (type: listofunicode) | |
| Returns | A Deferred which fires when the path has been renamed, or which fails if the path cannot be renamed. | |
PermissionDeniedError.