mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 07:44:37 +00:00
Address #24
Don't redownload files if they have already been downloaded Also added media file to .gitignore to prevent accidently commiting media
This commit is contained in:
parent
e29cbe22e9
commit
020f10502b
2 changed files with 35 additions and 12 deletions
18
.gitignore
vendored
18
.gitignore
vendored
|
@ -1,2 +1,18 @@
|
|||
|
||||
# Pictures
|
||||
*.jpg
|
||||
*.png
|
||||
*.bmp
|
||||
*.gif
|
||||
# Audio
|
||||
*.mp3
|
||||
*.wav
|
||||
*.wmv
|
||||
# Flash
|
||||
*.swf
|
||||
# Documents
|
||||
*.txt
|
||||
*.pdf
|
||||
*.doc
|
||||
*.docx
|
||||
# Swap files
|
||||
*.swp
|
||||
|
|
|
@ -30,6 +30,7 @@ Arguments:
|
|||
filename as on facdn
|
||||
-n (N)unmber of images to download, starting from
|
||||
the most recent submission
|
||||
-w Over(Write) files if they already exist
|
||||
|
||||
Examples:
|
||||
$0 gallery/mylafox
|
||||
|
@ -54,17 +55,19 @@ prefix="https:"
|
|||
metadata=true
|
||||
rename=true
|
||||
maxsavefiles="0"
|
||||
overwrite=false
|
||||
while getopts 'o:c:iphrn:' flag; do
|
||||
case "${flag}" in
|
||||
o) outdir=${OPTARG};;
|
||||
c) cookiefile=${OPTARG};;
|
||||
i) prefix="http:";;
|
||||
p) metadata=false;;
|
||||
r) rename=false;;
|
||||
n) maxsavefiles=${OPTARG};;
|
||||
h) help;;
|
||||
*) help;;
|
||||
esac
|
||||
case "${flag}" in
|
||||
w) overwrite=true;;
|
||||
o) outdir=${OPTARG};;
|
||||
c) cookiefile=${OPTARG};;
|
||||
i) prefix="http:";;
|
||||
p) metadata=false;;
|
||||
r) rename=false;;
|
||||
n) maxsavefiles=${OPTARG};;
|
||||
h) help;;
|
||||
*) help;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Attempt to create the output directory
|
||||
|
@ -146,7 +149,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
|||
fi
|
||||
|
||||
# Download the image
|
||||
wget "$image_url" -O "$file"
|
||||
if [ ! -f "$file" ] || [ $overwrite = true ] ; then
|
||||
wget "$image_url" -O "$file"
|
||||
else
|
||||
echo "File already exists, skipping. Use -w to skip this check"
|
||||
fi
|
||||
|
||||
# Add metadata
|
||||
if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue