Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
cykyy committed Jun 13, 2020
2 parents 5a91e43 + f0931af commit 1a9a734
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/tterb/atomic-design-ui/blob/master/LICENSEs)

A simple Java recursive file downloader from directory/index listing sites!
FilExD will create folders/files based on the target site structure and download files from the target site to your specified local location. You won't find any difference in folder structure and file name after it completes the job.
FileExD will create folders/files based on the target site structure and download files from the target site to your specified local location. You won't find any difference in folder structure and file name after it completes the job.
Currently, supports H5ai and Nginx Fancyindex based sites. The tool can be upgraded to support more platforms.

## Build
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/FileReadWrite.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class FileReadWrite {

public void writeInFile(String writeText, String writeFileName, boolean setAppend) {
try {
file = new File(writeFileName); //Declaring a file named named History.txt for creating.
file = new File(writeFileName); //file name
if (file.getParentFile() != null) {
if (!file.getParentFile().exists())
System.out.println("Creating log/history parent folder...");
Expand Down

0 comments on commit 1a9a734

Please sign in to comment.