I am trying to extract some content from XML files. I have what I need working for one file but I need to do it for all files in a directory. So far what I have is:
$files = Get-ChildItem C:\Users\rasuser\Desktop\import *.xml -recurse
foreach ($file in $files){
$MyXml = [xml](Get-Content $file)
#$path = $file.ExportedContentItem.path
#$name = $file.ExportedContentItem.name
#$GUID = $file.ExportedContentItem.ID
#$path + "/" + $name + " > "+$GUID
}
I'm not really understanding how to import read in the content to an XML format. Can anyone help me out?