# encoding: ascii
# api: powershell
# title: copy-data
# description: Copy Data between Folders including a Progressbar
# version: 0.1
# type: function
# author: mazakane
# license: CC0
# function: copy-data
# x-poshcode-id: 1103
# x-archived: 2009-05-19T06:41:44
#
#
function copy-data {
param($source, $dest)
$counter = 0
$files = Get-ChildItem $source -Force -Recurse
foreach($file in $files)
{
$status = "Copying file {0} of {1}: {2}" -f $counter, $files.count, $file.name
Write-Progress -Activity "Copyng Files" -Status $status -PercentComplete ($counter/$files.count * 100)
Copy-Item $file.pspath $dest -Force
$counter++
}
}