Merge pull request #2804 from zhaoshengwolf/v5-master

解决FtpTest.java的downloadTest下载会将文件夹下载成文件的问题
This commit is contained in:
Golden Looly 2022-12-14 12:02:52 +08:00 committed by GitHub
commit edcbbb8396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,12 +91,19 @@ public class FtpTest {
@Test
@Ignore
public void downloadTest() {
try(final Ftp ftp = new Ftp("localhost")){
final List<String> fileNames = ftp.ls("temp/");
for(final String name: fileNames) {
ftp.download("",
name,
FileUtil.file("d:/test/download/" + name));
String downloadPath = "d:/test/download/";
try (final Ftp ftp = new Ftp("localhost")) {
final List<FTPFile> ftpFiles = ftp.lsFiles("temp/", null);
for (final FTPFile ftpFile : ftpFiles) {
String name = ftpFile.getName();
if (ftpFile.isDirectory()) {
File dp = new File(downloadPath + name);
if (!dp.exists()) {
dp.mkdir();
}
} else {
ftp.download("", name, FileUtil.file(downloadPath + name));
}
}
} catch (final IOException e) {
throw new RuntimeException(e);