A download manager for Linux which saves downloaded files in directories by date like 2012_06_29

1

1

I've been using Download Master on Windows for years and what I liked most about it is that this program can automatically put downloaded files into directories by download date:

  /Downloads
  |
  |--/2012_06_28
  |  |
  |  |--a.zip
  |  |--b.pdf
  | ...
  |
  |--/2012_06_29
  |  |
  |  |--c.txt
  | ...
 ...

I'm looking for something similar for Linux. Is there any free download manager that can do this?

I have tried KGet and uGet but they both seem to lack this feature. If there is a way to configure them to do that, I'll be happy to know about it. Thank you.

Gart

Posted 2012-06-29T09:03:55.603

Reputation: 111

Answers

1

JDownloader 2 (still in Beta) supports exactly that (and much more).

Give it a try JDownloader 2 - Beta.

user50745

Posted 2012-06-29T09:03:55.603

Reputation: 11

+1 But can you give more details how to do this? I looked into the Jdownloader 2 beta settings and (beside in the archive extractor plugin) I didn't find a valid way to insert %date% or some similar placeholders. Do you have a link which explains which placeholders are allowed? – nixda – 2013-01-13T14:11:51.847

It's just above the archive extractor plugin. See that (german speaking...) video. At least to see where it is. It's quite easy to understand when you're in. Just right click an entry (eg filename or folder) and you'll see an entry with placeholders (eg jd:simpledate:yy.MM.dd_hh/jd:packagename)

– user50745 – 2013-01-14T14:46:42.793

1

You can wite a script using wget to achieve this. Something like this:

#!/usr/bin/env bash
DATE=`date +"%Y_%m_%d"`
URL=$1

mkdir -p ~/Downloads/$DATE
cd ~/Downloads/$DATE
wget $URL

Name it downloader.sh, make it executable and run with ./downloader.sh <URL>

BubuIIC

Posted 2012-06-29T09:03:55.603

Reputation: 546