rolson3788 / transmisson-remote-gui

Automatically exported from code.google.com/p/transmisson-remote-gui
GNU General Public License v2.0
0 stars 0 forks source link

Recursive folder creation #428

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Error that no folder

Transmission can not create folders recursive, I think it would be great if you 
implement it.

Original issue reported on code.google.com by iBlack.t...@gmail.com on 21 Jun 2011 at 6:33

GoogleCodeExporter commented 9 years ago
It can be implemented in transmission only.

Original comment by j...@cp-lab.com on 22 Jun 2011 at 5:17

GoogleCodeExporter commented 9 years ago
Sounds like it could be similar to my suggestion in that download target path 
e.g. c:/MyDownloads means the file in the torrent gets saved into 
c:/MyDownloads/MyFile.part

Some other clients have an tick box wether to append torrent name to download 
target i.e. c:/MyDownloads/TorrentName/MyFile.part

I have a workaround for me (currently testing), by adding it manually to 
transmission remote GUI source code. Breaks the 'last remembered' path, needs 
compiling for any change to path or to upgrade, and doesn't check or rewrite 
the name if it contains invalid chars, oh and doesn't check if the torrent 
already has a folder but nevertheless this is what Im trying

AddTorrent
Line 832 
ADD below line
cbDestFolder.Text:='C:/MY_PATH_TO/Downloads/' + edSaveAs.Text;

Original comment by jason.p...@gmail.com on 23 Nov 2014 at 11:03