India Broadband Forum


how to autocopy files at specified time?

This is a discussion on how to autocopy files at specified time? within the Windows forums, part of the Operating Systems category; i am using laptop for NU so that it doesn't make noise.but i want to get it on my desktop.i ...

Go Back   India Broadband Forum > Computers > Operating Systems > Windows

India Broadband Forum


                      

Reply

 

LinkBack Thread Tools Display Modes
Old 08-16-09, 10:38 AM   #1
Gold Member
 
imrock's Avatar
 
Join Date: Sep 2008
Posts: 748
Rep Power: 3
imrock will become famous soon enoughimrock will become famous soon enough
Default how to autocopy files at specified time?

i am using laptop for NU so that it doesn't make noise.but i want to get it on my desktop.i have to go to school at 7AM and the end of NU is 8AM so i want to copy my downloaded files automatically at 7:55AM to my pen drive.

IS there any batch file method for this?
PLz help me.
imrock is offline   Reply With Quote
Old 08-16-09, 12:51 PM   #2
meetdilip
Guest
 
Posts: n/a
Default

Instead, you can set your Pen drive as download location in utorrent or IDM. By that way there is no need to copy.
  Reply With Quote
Old 08-16-09, 01:33 PM   #3
newprouser
Guest
 
Posts: n/a
Default

You can use file synchronization software to do what you asked for. Dunno and particular names, jus google and see.


Quote:
Originally Posted by meetdilip View Post
Instead, you can set your Pen drive as download location in utorrent or IDM. By that way there is no need to copy.
that would not be suitable for torrents which require a lot read-writes and all.
  Reply With Quote
Old 08-16-09, 01:43 PM   #4
meetdilip
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by newprouser View Post
that would not be suitable for torrents which require a lot read-writes and all.
I am using my HDD with case, through USB port. All my torrents are download to this drive.
  Reply With Quote
Old 08-16-09, 01:46 PM   #5
newprouser
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by meetdilip View Post
I am using my HDD with case, through USB port. All my torrents are download to this drive.
pen drive uses flash memory while HDD uses magnetic storage.

A flash drives read-write cycles are limited and so its best to avoid as much as possible. and its one reason why the newer SSD HDD's don't require/should not be defragmented.
  Reply With Quote
Old 08-16-09, 02:11 PM   #6
meetdilip
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by newprouser View Post
pen drive uses flash memory while HDD uses magnetic storage.

A flash drives read-write cycles are limited and so its best to avoid as much as possible. and its one reason why the newer SSD HDD's don't require/should not be defragmented.
Thanks for the info.
  Reply With Quote
Old 08-16-09, 05:10 PM   #7
Gold Member
 
imrock's Avatar
 
Join Date: Sep 2008
Posts: 748
Rep Power: 3
imrock will become famous soon enoughimrock will become famous soon enough
Default

what about microsoft synctoy
imrock is offline   Reply With Quote
Old 08-23-09, 09:39 AM   #8
Bronze Member
 
Varad Dilip Choudhari's Avatar
 
Join Date: May 2008
Location: Karad
Age: 15
Posts: 208
Rep Power: 2
Varad Dilip Choudhari will become famous soon enough
Default

Quote:
Originally Posted by meetdilip View Post
Instead, you can set your Pen drive as download location in utorrent or IDM. By that way there is no need to copy.
don't select Pendrive as u r download location, one of my fnrds PD got corrupt due to this.
Varad Dilip Choudhari is offline   Reply With Quote
Old 08-23-09, 10:36 AM   #9
kirankumargb
Guest
 
Posts: n/a
Default

player,

give me your locations on HDD (total path where files will be downloaded) and the drive letter where files have to be copied. Ill give you a batch file and you can keep it in windows schedule and it will copy all the files in that specified folder to the pen drive
  Reply With Quote
Old 08-23-09, 10:41 AM   #10
Junior Member
 
Join Date: Apr 2008
Location: Bangalore
Posts: 40
Rep Power: 2
essbee will become famous soon enough
Default

Quote:
Originally Posted by theplayer View Post
i am using laptop for NU so that it doesn't make noise.but i want to get it on my desktop.i have to go to school at 7AM and the end of NU is 8AM so i want to copy my downloaded files automatically at 7:55AM to my pen drive.

IS there any batch file method for this?
PLz help me.
You can use task scheduler and create a task which fires at 7:55 AM. In case the file names are different, create a batch file which copies all the files in your download location to your pen drive and then deletes the files from your HDD...

Cheers
essbee is offline   Reply With Quote
Old 08-23-09, 10:44 AM   #11
kirankumargb
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by essbee View Post
You can use task scheduler and create a task which fires at 7:55 AM. In case the file names are different, create a batch file which copies all the files in your download location to your pen drive and then deletes the files from your HDD...

Cheers
That was what I was doing now
Just create a batch file for him which copies all the files in that location to the drive
  Reply With Quote
Old 08-23-09, 03:25 PM   #12
newprouser
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Varad Dilip Choudhari View Post
don't select Pendrive as u r download location, one of my fnrds PD got corrupt due to this.
how long did it last ??
Quote:
Originally Posted by kirankumargb View Post
That was what I was doing now
Just create a batch file for him which copies all the files in that location to the drive
xcopy ?
  Reply With Quote
Old 08-23-09, 04:48 PM   #13
kirankumargb
Guest
 
Posts: n/a
Default

yes np can use xcopy else just use copy *.* (of) to (xxx).
  Reply With Quote
Old 08-23-09, 04:54 PM   #14
newprouser
Guest
 
Posts: n/a
Default

copy will work onnly for files and not if there are any directories.
  Reply With Quote
Old 08-23-09, 07:03 PM   #15
Junior Member
 
Join Date: Apr 2008
Location: Bangalore
Posts: 40
Rep Power: 2
essbee will become famous soon enough
Default

Actually XCOPY though present in Vista has been deprecated in favour of ROBOCOPY (ROBust File COPY) in all versions of windows since XP. Just type robocopy /? in a command window to get a list of parameters supported.
Actually, you can use only robocopy to achieve what is required out here but the downside is that you have write a longish script.
However I just discovered a GUI script available at Free Utility: RichCopy, an Advanced Alternative to RoboCopy which would be able to do this job...

Take a look and let me know...

Cheers
essbee is offline   Reply With Quote
Old 08-23-09, 07:35 PM   #16
newprouser
Guest
 
Posts: n/a
Default

thanks essbebe, for the info

rep+
  Reply With Quote
Old 08-23-09, 07:39 PM   #17
kirankumargb
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by newprouser View Post
copy will work onnly for files and not if there are any directories.
yes correct. I forgot to mention that.
  Reply With Quote
Old 08-23-09, 09:50 PM   #18
Bronze Member
 
Varad Dilip Choudhari's Avatar
 
Join Date: May 2008
Location: Karad
Age: 15
Posts: 208
Rep Power: 2
Varad Dilip Choudhari will become famous soon enough
Default

it lasted for about a week
Varad Dilip Choudhari is offline   Reply With Quote
Old 08-23-09, 09:55 PM   #19
newprouser
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Varad Dilip Choudhari View Post
it lasted for about a week
its much much worse than i thought
  Reply With Quote
Old 08-24-09, 02:02 AM   #20
Junior Member
 
Join Date: Apr 2008
Location: Bangalore
Posts: 40
Rep Power: 2
essbee will become famous soon enough
Default

Quote:
Originally Posted by Varad Dilip Choudhari View Post
it lasted for about a week
Surprising. Since what matters in flash media is the number of write cycles and not just simple reads. Most torrent clients cache data and then write so that the number of writes is minimised. It may be interesting if some one has an old pen drive lying around to experiment with the cache settings and see how long it takes to trash the drive - just kidding of course...
essbee is offline   Reply With Quote
Reply

Tags
autocopy, files, time

Thread Tools
Display Modes

Posting Rules
You may post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
How to auto extract rar files and join 001 files capri Desktop Computer 7 07-23-09 12:10 PM
rapidshare files mohdirfanz BSNL broadband 2 09-16-08 01:56 PM
How to create a .cue files for (nfs underground 2) .bin files kartikoli Videogaming News and Reviews 5 05-30-08 06:18 PM
how to share files via MT841 ? sad46 BSNL broadband 3 03-03-08 04:59 PM
Help!-Not able to delete files aprilsagar Computer hardware and software tips and tricks 1 01-23-08 10:38 AM


All times are GMT +5.5. The time now is 01:53 PM.


India Broadband Forum