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