I have a bunch of txt files with references to PDF files wich share the same name as the txt file.
The problem is these files have too long file names. These txt and pdf files are autogenerated, and i have no way to change the filename length before i recieve them.
So what i have to do is open all the files, find the file name in the file based on it's file name, change the file name to something with max 16 characters+extension (total 20 characters) and then output the textfile with the new filename and also rename the corresponding PDF to the new filename.
Im very new to Powershell, and after googling for about two days i have found something like this:
$files = Get-ChildItem "C:\Test\Done" -recurse -include *.txt
foreach ($file in $files){
$outputfile = (Get-Date).hour + (Get-Date).minute + (Get-Date).millisecond + ".txt"
Get-Content $file | Foreach-object {$_ -replace '$file', '$outputfile' ` }
Set-Content $outputfile }
But i feel i am far from what i am really after.
Does anyone know how i might go about making this script do what i want?
Kristoffer
EDIT:
I tried @Christian 's solution and it seemed to work, but it didn't edit and add a new file name inside the file.
I tried this just as a test:
$files = "testfil2.txt"
$output = "testfil3.txt"
(Get-Content "C:\test\done\1456390000.txt") | ForEach-Object {$_ -replace $files, $output } | Set-Content "C:\test\done\1456390000.txt"
I removed the '' from the variables in ForEach-Object and it works as intended, it finds the variable $files and changes it with $output. However when i do the same with @Christian 's script i get an error message:
Regular expression pattern is not valid: C:\Test\Done\1542644000.txt.
At line:7 char:39
+ (Get-Content $file) | Foreach-object {$_ -replace $file, $outputfile } | Set-Co ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (C:\Test\Done\1542644000.txt:PSObject) [], RuntimeException
+ FullyQualifiedErrorId : InvalidRegularExpression
Any ideas?
Answered by Christian below.
