(File localFile)
| 94 | } |
| 95 | |
| 96 | public void sendFile(File localFile) throws IOException { |
| 97 | sendFile(localFile, localFile.getName()); |
| 98 | } |
| 99 | |
| 100 | public void sendFile(File localFile, String remoteFile) throws IOException { |
| 101 | out.write(("C0644 " + localFile.length() + " " + remoteFile + "\n").getBytes()); |
no test coverage detected