add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,29 @@
# Invoke-Item
> 在相应的默认程序中打开文件。
> 注意:此命令只能通过 PowerShell 使用。
> 更多信息:<https://learn.microsoft.com/powershell/module/microsoft.powershell.management/invoke-item>。
- 在其默认程序中打开文件:
`Invoke-Item -Path {{path\to\file}}`
- 打开目录中的所有文件:
`Invoke-Item -Path {{path\to\directory}}\*`
- 打开目录中的所有 PNG 文件:
`Invoke-Item -Path {{path\to\directory}}\*.png`
- 打开包含特定关键字的目录中的所有文件:
`Invoke-Item -Path {{path\to\directory}}\* -Include {{*keyword*}}`
- 打开目录中的所有文件,排除包含特定关键字的文件:
`Invoke-Item -Path {{path\to\directory}}\* -Exclude {{*keyword*}}`
- 执行干运行以确定通过 `Invoke-Item` 将打开的目录中的文件:
`Invoke-Item -Path {{path\to\directory}}\* -WhatIf`