Example #1
0
 def ftp_RMD(self, path):
     FTP.sendLine(self, '250 Requested File Action Completed OK')
Example #2
0
 def ftp_RNTO(self, toName):
     FTP.sendLine(self, '250 Requested File Action Completed OK')
Example #3
0
 def ftp_MKD(self, path):
     FTP.sendLine(self, '257 Folder created')
Example #4
0
 def ftp_STOR(self, path):
     FTP.sendLine(self,
                  '125 Data connection already open, starting transfer')
     FTP.sendLine(self, '226 Transfer Complete.')
Example #5
0
 def ftp_RNFR(self, fromName):
     FTP.sendLine(self,
                  '350 Requested file action pending further information.')
Example #6
0
	def ftp_RMD(self, path):
		FTP.sendLine(self, '250 Requested File Action Completed OK')
Example #7
0
	def ftp_MKD(self, path):
		FTP.sendLine(self, '257 Folder created')
Example #8
0
	def ftp_RNTO(self, toName):
		FTP.sendLine(self, '250 Requested File Action Completed OK')
Example #9
0
	def ftp_RNFR(self, fromName):
		FTP.sendLine(self, '350 Requested file action pending further information.')
Example #10
0
	def ftp_STOR(self, path):
		FTP.sendLine(self, '125 Data connection already open, starting transfer')
		FTP.sendLine(self, '226 Transfer Complete.')