mIRC Home    About    Download    Register    News    Help

Print Thread
#17327 29/03/03 12:41 PM
Joined: Mar 2003
Posts: 1
R
Rainz Offline OP
Mostly harmless
OP Offline
Mostly harmless
R
Joined: Mar 2003
Posts: 1
I want mIRC to separate the incomplete files from the complete ones. I saw a such feature in dc++. Have mIRC make a dir named Temporary Downloads or something better and make mIRC download the files into this folder at first and then if a file get complete, mIRC transfers this file to the Download folder.
It would make things much easier for us sharing and swapping videos. Corrupted files is a hell.

Joined: Dec 2002
Posts: 843
P
Hoopy frood
Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
If you're using mIRC for downloading videos, I think having 'corrupted' files in the same folder as your completed files is the least of your worries.

Last edited by Poppy; 29/03/03 03:22 PM.

Never compare yourself to others - they're more screwed up than you think.
Joined: Jan 2003
Posts: 87
T
Tat Offline
Babel fish
Offline
Babel fish
T
Joined: Jan 2003
Posts: 87
Code:
on *:FILERCVD:*:{
  if ((%move) || (!$isfile($filename))) { return }
  if (!$isdir(Completed)) { mkdir Completed }
var %i
  while ($isfile(Completed $+ \ $+ $nopath($filename) $+ %i)) %i = $calc(%i + 1)
  .timer 1 0 .rename " $+ $filename $+ " " $+ Completed $+ \ $+ $nopath($filename) $+ %i $+ "
}


Very quick paste into remotes...
And, yeah, I know tossing on the %i to prevent the rename failure is pretty cheap. %move gets set and it doesn't use the feature.

Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Corrupted files is a hell.

So will getting sprung downloading them at some stage in the future.


Link Copied to Clipboard