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