()
| 30 | """ |
| 31 | |
| 32 | def SendFile(): |
| 33 | FileName = 'example.txt' """ Enter the name of the file """ |
| 34 | with open(FileName, 'rb') as LocalFile: |
| 35 | ftp.storbinary('STOR ' + FileName, LocalFile) |
| 36 | ftp.quit() |
nothing calls this directly
no outgoing calls
no test coverage detected