mirror of https://github.com/python/cpython
Added cwd()
This commit is contained in:
parent
605b127ff3
commit
02cf582e73
|
@ -303,6 +303,10 @@ class FTP:
|
|||
raise error_reply, resp
|
||||
self.voidcmd('RNTO ' + toname)
|
||||
|
||||
# Change to a directory
|
||||
def cwd(self, dirname):
|
||||
self.voidcmd('CWD ' + dirname)
|
||||
|
||||
# Make a directory, return its full pathname
|
||||
def mkd(self, dirname):
|
||||
resp = self.sendcmd('MKD ' + dirname)
|
||||
|
|
Loading…
Reference in New Issue