Powershell Batch Replacement file

Source: Internet
Author: User

Powershell Batch Replacement file
##Xiongpq##时间: 2015-06-10 18:50##版本: 2.0##源文件目录##源文件目录的所有文件都会覆盖目标目录的同名文件, the source file directory can be within the target directory and will not be overwritten$source=' E:\Test_Target\Test_Source\ '##目标目录, multiple directories supported$target=' E:\Test_Target\ ', ' D:\Test_Target '$sourceItem= Get-childitem-path$source-recurseforeach($sourceFileName inch $sourceItem){    $targetItem= Get-childitem-path$target-include$sourceFileName. Name-recurseforeach($targetFileName inch $targetItem)    {        if($targetFileName. FullName-ne $sourceFileName. FullName) {Copy-item-path$sourceFileName. Fullname-destination$targetFileName. FullName-Force}}}  Write-host ("It's done ... ...... .....")

Powershell Batch Replacement file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.