gpt4 book ai didi

powershell - 如何使用 powershell 在 docx 文件中搜索单词?

转载 作者:行者123 更新时间:2023-12-02 03:56:17 25 4
gpt4 key购买 nike

我必须检查一个文件夹中的所有 .docx 文件,并且我必须显示包含我添加为参数的单词的文件名。我如何在 powershell 中执行此操作?

最佳答案

尝试这样的事情:

#Instance of word
$Word=NEW-Object –comobject Word.Application
$Word.visible = $False

#take list of .docx
Get-ChildItem "c:\temp" -file -Filter "*.docx" | %{

$Filename=$_.FullName

#open file and take content of word file
$Document=$Word.documents.open($Filename, $false, $true)
$range = $document.content

#if content have your word, print path of word file
If($range.Text -like "*tot*"){
$Filename
}

$word.Documents.Close($false)

}

关于powershell - 如何使用 powershell 在 docx 文件中搜索单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43838082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com