Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

#108823 6-Sep-2012 12:29
Send private message

Hi,

I know pretty much nothing about scripting and have a need for a small script to move some files and folders for a client.

This is what they want to do:

They have a lot of clients that have had data archived and they want to move a folder called FS, and any files or folders in it, to another location.

Current location:
D:\Archiving\Clients\????\FS

The ???? is a four digit client number ranging from about 1200 to 9999 but not every number is used.

They want to move the FS folder, and any files in it, to:
D:\Data\Clients\????\Retain\

EG: D:\archiving\clients\1203\FS needs to move to D:\data\clients\1203\Retain\

Can anybody help with this?

Thanks!







Opinions are my own and not the views of my employer.


Create new topic
ubergeeknz
3344 posts

Uber Geek

Trusted
Vocus

  #682250 6-Sep-2012 12:33
Send private message

Google for "robocopy"

Or you could use xcopy, if you are a masochist.



CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682257 6-Sep-2012 12:40
Send private message

I've used robocopy a bit, will it do what we want with the different folder names for the client number?




Opinions are my own and not the views of my employer.


ubergeeknz
3344 posts

Uber Geek

Trusted
Vocus

  #682260 6-Sep-2012 12:41
Send private message

should do with a recursive copy, yeah



ubergeeknz
3344 posts

Uber Geek

Trusted
Vocus

  #682265 6-Sep-2012 12:43
Send private message

Oh, I see where you're going; the folder structure is different...

1. See if the requirement can be relaxed to make life simpler
2. if not, You'll probably need to use a FOR loop and create the folders in your script before copying from the source to destination folder

kiwigeek1
637 posts

Ultimate Geek
Inactive user


  #682329 6-Sep-2012 13:42
Send private message


I use Terracopy works great for all my needs.. beefs up windows
crappy copy gui... with pause and status and space checking
and copy over and skip dups etc

use it on xp and win 7

copies to nas boxes as well

but for slow connections or wifi theres duracopy as well but
I find terrcopy is much better to use once tweak the settings

CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682767 7-Sep-2012 12:14
Send private message

So nobody got any ideas on a script to do this?

Those programs are all great but they don't have an easy way of doing what I need to do.




Opinions are my own and not the views of my employer.


Lias
5590 posts

Uber Geek

ID Verified
Trusted
Lifetime subscriber

  #682813 7-Sep-2012 14:14
Send private message

It's unlikely anyone is going to write you a custom script to do something like that for free, particularly given that you clearly want it for a business client of yours.





I'm a geek, a gamer, a dad, a Quic user, and an IT Professional. I have a full rack home lab, size 15 feet, an epic beard and Asperger's. I'm a bit of a Cypherpunk, who believes information wants to be free and the Net interprets censorship as damage and routes around it. If you use my Quic signup you can also use the code R570394EKGIZ8 for free setup.


 
 
 

Trade NZ and US shares and funds with Sharesies (affiliate link).
ubergeeknz
3344 posts

Uber Geek

Trusted
Vocus

  #682815 7-Sep-2012 14:18
Send private message

A CMD script with a FOR loop, and a simple xcopy or robocopy command will do it, and fairly simply.  A quick google will get you the info you need to write such a script... teach a man how to fish, and all that.  If you don't learn how it works how are you going to support it if it goes awry or the requirements change?

amanzi
Amanzi
1302 posts

Uber Geek

ID Verified
Trusted
Lifetime subscriber

  #682816 7-Sep-2012 14:19
Send private message

I agree with Lias, feels like you're being a little lazy here - especially if this is for paid work for a client of yours.

But anyway, this should point you in the right direction:

Put the following in a batch script and run it:

@ECHO OFF 
for /l %%x in (1200, 1, 9999) do (
echo D:\archiving\clients\%%x\FS needs to move to D:\data\clients\%%x\Retain\
)


You should be able to figure it out from there.

CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682819 7-Sep-2012 14:20
Send private message

ubergeeknz: A CMD script with a FOR loop, and a simple xcopy or robocopy command will do it, and fairly simply.  A quick google will get you the info you need to write such a script... teach a man how to fish, and all that.  If you don't learn how it works how are you going to support it if it goes awry or the requirements change?


Thanks! That's the info I was looking for :)




Opinions are my own and not the views of my employer.


CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682820 7-Sep-2012 14:21
Send private message

Lias: It's unlikely anyone is going to write you a custom script to do something like that for free, particularly given that you clearly want it for a business client of yours.



I'll be doing it for free as it's a non-profit organisation so was hoping to get away with not having to pay someone to do it.
Thanks for you input.




Opinions are my own and not the views of my employer.


CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682821 7-Sep-2012 14:24
Send private message

amanzi: I agree with Lias, feels like you're being a little lazy here - especially if this is for paid work for a client of yours.

But anyway, this should point you in the right direction:

Put the following in a batch script and run it:

@ECHO OFF  
for /l %%x in (1200, 1, 9999) do (
echo D:\archiving\clients\%%x\FS needs to move to D:\data\clients\%%x\Retain\
)


You should be able to figure it out from there.


Thanks, I'll have a look at that.
As I said it's for a non-profit organisation so I'm doing this for free for them.




Opinions are my own and not the views of my employer.


gzt

gzt
17160 posts

Uber Geek

Lifetime subscriber

  #682840 7-Sep-2012 15:18
Send private message

It would be wise to verify directory contents at least on completion, and you need some kind of error logging.

Wise to run it after hours, and you really need to know there are no existing network tasks or network backup jobs which might be disrupted by the additional load on the network.

ubergeeknz
3344 posts

Uber Geek

Trusted
Vocus

  #682855 7-Sep-2012 15:46
Send private message

CYaBro: I'll be doing it for free as it's a non-profit organisation so was hoping to get away with not having to pay someone to do it.


Why didn't you say so in the first place ;)

CYaBro

4590 posts

Uber Geek

ID Verified
Trusted

  #682856 7-Sep-2012 15:47
Send private message

I will do it after hours plus I'll run a backup first in case something goes wrong. (I have ShadowProtect IT Edition USB stick)

Thanks for the sample script amanzi, I was able to work from there and get something that looks like it will work.
I've tested it on my machine anyway and it worked.




Opinions are my own and not the views of my employer.


Create new topic





News and reviews »

Gen Threat Report Reveals Rise in Crypto, Sextortion and Tech Support Scams
Posted 7-Aug-2025 13:09


Logitech G and McLaren Racing Sign New, Expanded Multi-Year Partnership
Posted 7-Aug-2025 13:00


A Third of New Zealanders Fall for Online Scams Says Trend Micro
Posted 7-Aug-2025 12:43


OPPO Releases Its Most Stylish and Compact Smartwatch Yet, the Watch X2 Mini.
Posted 7-Aug-2025 12:37


Epson Launches New High-End EH-LS9000B Home Theatre Laser Projector
Posted 7-Aug-2025 12:34


Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.