このコードを使用して、Windows 7 でファイルを削除するのに問題があります。
private static final String WIN_DIR_TEST = "D:"+File.separator+"Users"+File.separator+"u119255"+File.separator+"Desktop"+File.separator;
...
File file = null;
FileWriter fileWriter = null;
String localPath = WIN_DIR_TEST.concat("abc.degno");
file = new File(localPath);
fileWriter = new FileWriter(file, true);
fileWriter.write("qwertyuiop\n");
fileWriter.close();
ftp.send(localPath, distantPath);
file.delete();
そして、この最後の行は常に false を返しますが、その理由がわかりません。また、例外は発生しません。