My code snippet is below. I am trying to have items move into folders that already exist. The folders might actually have the files in them too. I want the code to move the file in to the folder and I want it to overwrite the existing file regardless, no matter what.
[PRE]
#If a date folder with the date of this item is already created, it is moved there
If(test-path “\172.17.200.20\CDC\archive$datefolder”)
{
Add-content -Path $logpath -value “Date file already created. Moving item to date file in archive on old server.”
$archive = “\172.17.200.20\CDC\archive$datefolder”
Move-Item $item $archive -Force
}
#If the date folder with the date of this item is not already created, the folder is created and then the item is moved to that location.
else
{
Add-content -Path $logpath -value “Date file not already created. Creating date file in archive on old server.”
New-Item -ItemType directory -Path “\172.17.200.20\CDC\archive$datefolder”
$archive = “\172.17.200.20\CDC\archive” + $datefolder
Add-content -Path $logpath -value “Now moving itme to date folder just created.”
move-item $item $archive -Force
}
[/PRE]