return files;
}
public boolean renameFile(File from, File to) throws CourierException
{
final RemoteFileSystem handler = getHandler() ;
try
{
handler.remoteRename(from, to);
return true;
}
catch (IOException ex) // file not found
{
return false;
}
catch (Exception e)
{
throw new CourierException(e);
}
finally
{
handler.quit();
}
}