直接操作项Manipulating Items Directly

本文内容

在 Windows PowerShell 驱动器中看到的元素(例如文件系统驱动器中的文件和文件夹),以及 Windows PowerShell 注册表驱动器中的注册表项在 Windows PowerShell 中均称为用于使用这些项的 cmdlet 名称中具有名词 Item

Get-Command -Noun Item 命令的输出显示有九个 Windows PowerShell 项 cmdlet。

  1. PS> Get-Command -Noun Item
  2. CommandType Name Definition
  3. ----------- ---- ----------
  4. Cmdlet Clear-Item Clear-Item [-Path] <String[]...
  5. Cmdlet Copy-Item Copy-Item [-Path] <String[]>...
  6. Cmdlet Get-Item Get-Item [-Path] <String[]> ...
  7. Cmdlet Invoke-Item Invoke-Item [-Path] <String[...
  8. Cmdlet Move-Item Move-Item [-Path] <String[]>...
  9. Cmdlet New-Item New-Item [-Path] <String[]> ...
  10. Cmdlet Remove-Item Remove-Item [-Path] <String[...
  11. Cmdlet Rename-Item Rename-Item [-Path] <String>...
  12. Cmdlet Set-Item Set-Item [-Path] <String[]> ...

创建新项 (New-Item)Creating New Items (New-Item)

若要在文件系统中创建新项,请使用 New-Item cmdlet。包含带有项的路径的 Path 参数,以及值为“file”或“directory”的 ItemType 参数。

例如,若要在 C:\Temp 目录中创建名为“New.Directory”的新目录,请键入:

  1. PS> New-Item -Path c:\temp\New.Directory -ItemType Directory
  2. Directory: Microsoft.Windows PowerShell.Core\FileSystem::C:\temp
  3. Mode LastWriteTime Length Name
  4. ---- ------------- ------ ----
  5. d---- 2006-05-18 11:29 AM New.Directory

若要创建文件,请将 ItemType 参数的值更改为“file”。例如,若要在 New.Directory 目录中创建名为“file1.txt”的文件,请键入:

  1. PS> New-Item -Path C:\temp\New.Directory\file1.txt -ItemType file
  2. Directory: Microsoft.Windows PowerShell.Core\FileSystem::C:\temp\New.Directory
  3. Mode LastWriteTime Length Name
  4. ---- ------------- ------ ----
  5. -a--- 2006-05-18 11:44 AM 0 file1

可以使用相同技术创建新的注册表项。事实上,注册表项更容易创建,因为 Windows 注册表中的唯一项类型就是注册表项。(注册表条目是项属性。)例如,若要在 CurrentVersion 子项中创建名为“_Test”的项,请键入:

  1. PS> New-Item -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion_Test
  2. Hive: Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Micros
  3. oft\Windows\CurrentVersion
  4. SKC VC Name Property
  5. --- -- ---- --------
  6. 0 0 _Test {}

在键入注册表路径时,请确保在 Windows PowerShell 驱动器名称中包含冒号 (:),如 HKLM: 和 HKCU:。如果不带冒号,则 Windows PowerShell 无法识别路径中的驱动器名称。

为什么注册表值不是项Why Registry Values are not Items

当你使用 Get-ChildItem cmdlet 查找注册表项中的项时,你将永远不会看到实际的注册表条目或其值。

例如,注册表项 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run 通常包含若干注册表条目,用于表示在系统启动时运行的应用程序。

但是,当你使用 Get-ChildItem 查找注册表项中的子项时,你只会看到注册表项的 OptionalComponents 子项:

  1. PS> Get-ChildItem HKLM:\Software\Microsoft\Windows\CurrentVersion\Run
  2. Hive: Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Micros
  3. oft\Windows\CurrentVersion\Run
  4. SKC VC Name Property
  5. --- -- ---- --------
  6. 3 0 OptionalComponents {}

尽管将注册表条目视为项会很方便,但无法确保指定的注册表条目路径是唯一的。路径表示法不区分名为 Run 的注册表子项和 Run 子项中的 (Default) 注册表条目。此外,由于注册表项名称可以包含反斜杠字符 (\),因此如果注册表项是项目,则无法使用路径表示法区分名为 Windows\CurrentVersion\Run 的注册表项和此路径中的子项。

重命名现有项 (Rename-Item)Renaming Existing Items (Rename-Item)

若要更改文件或文件夹的名称,请使用 Rename-Item cmdlet。以下命令将 file1.txt 文件的名称更改为 fileOne.txt

  1. Rename-Item -Path C:\temp\New.Directory\file1.txt fileOne.txt

Rename-Item cmdlet 可以更改文件或文件夹的名称,但它不能移动项。以下命令将失败,因为它尝试将文件从 New.Directory 目录移动到 Temp 目录。

  1. PS> Rename-Item -Path C:\temp\New.Directory\fileOne.txt c:\temp\fileOne.txt
  2. Rename-Item : Cannot rename because the target specified is not a path.
  3. At line:1 char:12
  4. + Rename-Item <<<< -Path C:\temp\New.Directory\fileOne c:\temp\fileOne.txt

移动项 (Move-Item)Moving Items (Move-Item)

若要移动文件或文件夹,请使用 Move-Item cmdlet。

例如,以下命令将 New.Directory 目录从 C:\temp 目录移动到 C: 驱动器的根目录。若要验证该项是否已移动,请包含 Move-Item cmdlet 的 PassThru 参数。在没有 Passthru 的情况下,Move-Item cmdlet 不显示任何结果。

  1. PS> Move-Item -Path C:\temp\New.Directory -Destination C:\ -PassThru
  2. Directory: Microsoft.Windows PowerShell.Core\FileSystem::C:\
  3. Mode LastWriteTime Length Name
  4. ---- ------------- ------ ----
  5. d---- 2006-05-18 12:14 PM New.Directory

复制项 (Copy-Item)Copying Items (Copy-Item)

如果你熟悉其他 shell 中的复制操作,你可能会发现 Windows PowerShell 中的 Copy-Item cmdlet 行为不正常。当你将项从一个位置复制到另一个位置时,默认情况下 Copy-Item 不会复制其内容。

例如,如果将 New.Directory 目录从 C: 驱动器复制到 C:\temp 目录,命令会成功运行,但不会复制 New.Directory 目录中的文件。

  1. Copy-Item -Path C:\New.Directory -Destination C:\temp

如果显示 C:\temp\New.Directory 的内容,你将发现它未包含任何文件:

  1. PS> Get-ChildItem -Path C:\temp\New.Directory
  2. PS>

为什么 Copy-Item cmdlet 不将内容复制到新位置?

Copy-Item cmdlet 的设计目标是通用;它不再仅仅用于复制文件和文件夹。此外,即使在复制文件和文件夹时,你也可能只想要复制容器,而不是复制其中的项。

若要复制文件夹中的所有内容,请在命令中包含 Copy-Item cmdlet 的 Recurse 参数。如果你已复制目录,而未复制其内容,则可添加 Force 参数,该参数允许你覆盖空文件夹。

  1. PS> Copy-Item -Path C:\New.Directory -Destination C:\temp -Recurse -Force -Passthru
  2. Directory: Microsoft.Windows PowerShell.Core\FileSystem::C:\temp
  3. Mode LastWriteTime Length Name
  4. ---- ------------- ------ ----
  5. d---- 2006-05-18 1:53 PM New.Directory
  6. Directory: Microsoft.Windows PowerShell.Core\FileSystem::C:\temp\New.Directory
  7. Mode LastWriteTime Length Name
  8. ---- ------------- ------ ----
  9. -a--- 2006-05-18 11:44 AM 0 file1

删除项 (Remove-Item)Deleting Items (Remove-Item)

若要删除文件和文件夹,请使用 Remove-Item cmdlet。可进行重要且不可逆更改的 Windows PowerShell cmdlet(例如 Remove-Item)在你输入其命令时通常将提示你进行确认。例如,如果你尝试删除 New.Directory 文件夹,系统将提示你确认命令,因为该文件夹中包含文件:

  1. PS> Remove-Item C:\New.Directory
  2. Confirm
  3. The item at C:\temp\New.Directory has children and the -recurse parameter was not
  4. specified. If you continue, all children will be removed with the item. Are you
  5. sure you want to continue?
  6. [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help
  7. (default is "Y"):

由于“是”是默认响应,因此若要删除文件夹及其文件,请按“Enter”键。若要删除文件夹而不进行确认,请使用 -Recurse参数。

  1. Remove-Item C:\temp\New.Directory -Recurse

执行项 (Invoke-Item)Executing Items (Invoke-Item)

Windows PowerShell 使用 Invoke-Item cmdlet 针对文件或文件夹执行默认操作。此默认操作由注册表中的默认应用程序处理程序确定;效果与在文件资源管理器中双击该项的效果相同。

例如,假设你要运行以下命令:

  1. Invoke-Item C:\WINDOWS

位于 C:\Windows 中的“资源管理器”窗口将会出现,正如你双击 C:\Windows 文件夹一样。

如果在 Windows Vista 之前的系统上调用 Boot.ini 文件:

  1. Invoke-Item C:\boot.ini

如果 .ini 文件类型与记事本相关联,则 boot.ini 文件将在记事本中打开。