class documentation
An authenticated implementation of IFTPShell
.
Method | make |
Create a directory. |
Method | open |
Open path for writing. |
Method | remove |
Remove a directory. |
Method | remove |
Remove a file. |
Method | rename |
Rename a file or directory. |
Inherited from FTPAnonymousShell
:
Method | __init__ |
Undocumented |
Method | access |
Determine whether access to the given path is allowed. |
Method | list |
Return the list of files at given path, adding keys stat informations if specified. |
Method | open |
Open path for reading. |
Method | receive |
Undocumented |
Method | stat |
Retrieve information about the given path. |
Instance Variable | filesystem |
The path which is considered the root of this shell. |
Method | _path |
Undocumented |
Method | _stat |
Get whether the filepath is a directory |
Method | _stat |
Get the filepath's owner's group. If this is not implemented (say in Windows) return the string "0" since stat-ing a file in Windows seems to return st_gid=0. |
Method | _stat |
Get the number of hardlinks for the filepath - if the number of hardlinks is not yet implemented (say in Windows), just return 0 since stat-ing a file in Windows seems to return st_nlink=0. |
Method | _stat |
Get the filepath's last modified date |
Method | _stat |
Get the filepath's owner's username. If this is not implemented (say in Windows) return the string "0" since stat-ing a file in Windows seems to return st_uid=0. |
Method | _stat |
Get the filepath's permissions object |
Method | _stat |
Get the filepath's size as an int |
Method | _stat |
Shortcut method to get stat info on a node. |
Create a directory.
Parameters | |
path:list of unicode | The path, as a list of segments, to create |
Returns | |
A Deferred which fires when the directory has been created, or which fails if the directory cannot be created. |
Open path for writing.
Parameters | |
path:list of unicode | The path, as a list of segments, to open. |
Returns | |
A Deferred is returned that will fire with an object implementing IWriteFile if the file is successfully opened. If path is a directory, or if an exception is raised while trying to open the file, the Deferred will fire with an error. |
Remove a directory.
Parameters | |
path:list of unicode | The path, as a list of segments, to remove |
Returns | |
A Deferred which fires when the directory has been removed, or which fails if the directory cannot be removed. |
Remove a file.
Parameters | |
path:list of unicode | The path, as a list of segments, to remove |
Returns | |
A Deferred which fires when the file has been removed, or which fails if the file cannot be removed. |