我有一个包含 40 个 xml 文件的文件夹,我需要在其中删除<column ..../>
元素。
我想一口气完成所有这些。这是我需要修改的文件的示例:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<!-- generated using CMHInc.NHibernate.hbm.cst -->
<class name="CMHInc.Lodge.Business.Core.ProductType, CMHInc.Lodge.Business.Core" table="ProductType" lazy="false" schema="CMHPos">
<id name="Id" type="Guid" unsaved-value="{00000000-0000-0000-0000-000000000000}" >
<column name="Id" sql-type="uniqueidentifier" not-null="true" unique="true" index="PK_ProductType"/>
<generator class="guid.comb" />
</id>
<version name="RowId" column="RowId" generated="always" type="Byte[]"
unsaved-value="null" access="field.camelcase-underscore"/>
<property name="Type" type="String" access="field.camelcase-underscore" >
<column name="Type" length="20" sql-type="varchar" not-null="true"/>
</property>
我想删除每个实例
<column name="Type" length="20" sql-type="varchar" not-null="true"/>
这是我的 PowerShell 代码:
Get-ChildItem c:\xml\*.xml | % {
$xml = [xml](Get-Content $_.FullName)
$xml.catalog.book |
where { $_.title -eq "property" } |
foreach { $_.RemoveAttribute("column") }
$xml.Save($_.FullName)
}
我有以下错误:
使用“1”参数调用“保存”的异常:“访问路径 'C:\xml\ActivityChargeCalculation.hbm.xml' 被拒绝。”
我查看了文件和文件夹的安全设置,但我以管理员身份登录并刚刚创建了这些文件。
建议?