I have this code which is appending "segment99" to the beginning of the text file and recreating the whole file with the same name plus suffix "_99". I have two concerns: 1) Takes a long while to run. 2) Modifies the contents of the file - like formatting and special characters like small boxes (looks like small boxes when opened in a notepad).
CODE I AM USING NOW:
Begin
{
$PathData = '<<ESB_Data_Share_HSH>>\RwdPnP'
Get-ChildItem $PathData -Filter '*.txt' | %{
$Start = $true
Get-Content $_.FullName | .{Process{
if ($Start) {
'"segment99"' + $_
$Start = $false
}
else {
$_
}
}} | Set-Content ($_.FullName -replace '\.txt$', '_99.txt')
}
}
please suggest a new code which when given a target folder should: -catch the first file, append "segment99" to the beginning of the first line (top left corner when opened in a notepad) and save it with the same name +"_99" as suffix. -go to the next file and do the same -this continues until all the files in the folder are modified