Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...You have made an incredible site which is truly a great help to me in solving problems. A tip of my hat to you!..."

Geography

Where in the world do Tek-Tips members come from?
sorrell (IS/IT--Management)
4 Aug 11 6:59
Please can someone help me with this?

I want to use ps to move files from \\server1\share1 to \\server2\share2\folder

I have 600 files of the same type to move.

The file naming convention is based on surnamelastname and is maximum 8 characters (5 surname, 3 lastname) ie smithian.txt.

I want ps to create the destination folder (if it does not already exist) name to match that of the source file name.

e.g \\server2\share2\smithian\smithian.txt, \\server2\share2\jonesdav\jonesdav.txt

 If the destination folder already exists then just move the file into the folder.

Is this possible with Powershell?? Thanks in advance

 
crobin1 (MIS)
5 Aug 11 9:59
Here's a sample script that should do what you want:

CODE

$files = get-childitem \\server1\share1\*.txt

foreach ($file in $files)
{
    $basename = $file.BaseName
    if (-not(test-path -path \\server2\share2\$basename))
    {
        mkdir \\server2\share2\$basename
    }
    move-item $file \\server2\share2\$basename
}
 

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close