mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
Merge pull request #2804 from zhaoshengwolf/v5-master
解决FtpTest.java的downloadTest下载会将文件夹下载成文件的问题
This commit is contained in:
commit
edcbbb8396
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user