Dropbox 的支持表明您可以使用以下命令让 Dropbox 忽略特定文件或文件夹:
Set-Content -Path 'C:\Users\yourname\Dropbox\YourFileName.pdf' -Stream com.dropbox.ignored -Value 1
有没有办法使用 PowerShell 在硬盘驱动器上名为
FileContentIndex
的所有文件夹上设置此值?
谢谢!
您可以使用
Get-ChildItem
列出目录,然后可以将该输出直接通过管道传输到 Set-Content
:
$startingPath = 'path\to\theParentDir'
Get-ChildItem $startingPath -Recurse -Directory -Filter FileContentIndex |
Set-Content -Stream com.dropbox.ignored -Value 1