Remove-Item
刪除指定的專案。
語法
Remove-Item
[-Path] <String[]>
[-Filter <String>]
[-Include <String[]>]
[-Exclude <String[]>]
[-Recurse]
[-Force]
[-Credential <PSCredential>]
[-WhatIf]
[-Confirm]
[-UseTransaction]
[-Stream <String[]>]
[<CommonParameters>]
Remove-Item
-LiteralPath <String[]>
[-Filter <String>]
[-Include <String[]>]
[-Exclude <String[]>]
[-Recurse]
[-Force]
[-Credential <PSCredential>]
[-WhatIf]
[-Confirm]
[-UseTransaction]
[-Stream <String[]>]
[<CommonParameters>]
Description
Remove-Item
Cmdlet 會刪除一或多個專案。
因為許多提供者都支援它,所以它可以刪除許多不同類型的專案,包括檔案、資料夾、登錄機碼、變數、別名和函式。
範例
範例 1:刪除擴展名為任何檔案的檔案
此命令會從 「C:\Test」 資料夾中移除名稱包含點 ('.'') 的所有檔案。 因為命令會指定一個點,因此命令不會刪除沒有擴展名的資料夾或檔案。
Remove-Item C:\Test\*.*
範例 2:刪除資料夾中的一些檔案
此命令會從目前資料夾刪除所有擴展名為 「.doc」 的檔案,以及不包含 1 的名稱。 它會使用通配符 ('*') 來指定目前資料夾的內容。 它會使用 Include 和 Exclude 參數來指定要刪除的檔案。
Remove-Item * -Include *.doc -Exclude *1*
範例 3:刪除隱藏的唯讀檔案
此命令會刪除 隱藏 和 只讀的檔案。 它會使用 Path 參數來指定檔案。 它會使用 Force 參數來刪除它。 如果沒有 Force,您就無法刪除 唯讀 或 隱藏 檔案。
Remove-Item -Path C:\Test\hidden-RO-file.txt -Force
範例 4:以遞歸方式刪除子資料夾中的檔案
此命令會以遞歸方式刪除目前資料夾和所有子資料夾中的所有 CSV 檔案。
由於 Remove-Item
中的 Recurse 參數有已知問題,因此此範例中的命令會使用 Get-ChildItem
取得所需的檔案,然後使用管線運算符將它們傳遞至 Remove-Item
。
在 Get-ChildItem
命令中,Path 的值為 『*』,代表目前資料夾的內容。
它會使用 Include 來指定 CSV 檔案類型,並使用 Recurse 來使擷取遞歸。
如果您嘗試指定路徑的檔類型,例如 -Path *.csv
,Cmdlet 會將搜尋的主旨解譯為沒有子專案的檔案,Recurse 失敗。
Get-ChildItem * -Include *.csv -Recurse | Remove-Item
範例 5:以遞歸方式刪除子機碼
此命令會刪除 「OldApp」 登錄機碼及其所有子機碼和值。
它會使用 Remove-Item
來移除金鑰。
指定路徑,但省略選擇性參數名稱 (Path)。
Recurse 參數會以遞歸方式刪除 “OldApp” 金鑰的所有內容。 如果機碼包含子機碼,且您省略 Recurse 參數,系統會提示您確認您想要刪除金鑰的內容。
Remove-Item HKLM:\Software\MyCompany\OldApp -Recurse
範例 6:刪除具有特殊字元的檔案
下列範例示範如何刪除包含括弧或括弧等特殊字元的檔案。
Get-ChildItem
Directory: C:\temp\Downloads
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 6/1/2018 12:19 PM 1362 myFile.txt
-a---- 6/1/2018 12:30 PM 1132 myFile[1].txt
-a---- 6/1/2018 12:19 PM 1283 myFile[2].txt
-a---- 6/1/2018 12:19 PM 1432 myFile[3].txt
Get-ChildItem | Where-Object Name -Like '*`[*'
Directory: C:\temp\Downloads
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 6/1/2018 12:30 PM 1132 myFile[1].txt
-a---- 6/1/2018 12:19 PM 1283 myFile[2].txt
-a---- 6/1/2018 12:19 PM 1432 myFile[3].txt
Get-ChildItem | Where-Object Name -Like '*`[*' | ForEach-Object { Remove-Item -LiteralPath $_.Name }
Get-ChildItem
Directory: C:\temp\Downloads
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 6/1/2018 12:19 PM 1362 myFile.txt
範例 7:移除替代數據流
此範例示範如何使用 Remove-Item
Cmdlet 的 Stream 動態參數來刪除替代數據流。 數據流參數是在 Windows PowerShell 3.0 中引進的。
第一個命令會使用 Get-Item
Cmdlet 的 Stream 動態參數,來取得 “Copy-Script.ps1” 檔案的 Zone.Identifier 數據流。
第二個命令會使用 Remove-Item
Cmdlet 的 Stream 動態參數來移除檔案的 Zone.Identifier 數據流。
第三個命令會使用
沒有 Stream 參數的第四個命令 Get-Item
Cmdlet,以確認檔案未刪除。
Get-Item C:\Test\Copy-Script.ps1 -Stream Zone.Identifier
FileName: \\C:\Test\Copy-Script.ps1
Stream Length
------ ------
Zone.Identifier 26
Remove-Item C:\Test\Copy-Script.ps1 -Stream Zone.Identifier
Get-Item C:\Test\Copy-Script.ps1 -Stream Zone.Identifier
Get-Item : Could not open alternate data stream 'Zone.Identifier' of file 'C:\Test\Copy-Script.ps1'.
At line:1 char:1
+ Get-Item 'C:\Test\Copy-Script.ps1' -Stream Zone.Identifier
+ [!INCLUDE[]()][!INCLUDE[]()][!INCLUDE[]()][!INCLUDE[]()][!INCLUDE[]()]~~
+ CategoryInfo : ObjectNotFound: (C:\Test\Copy-Script.ps1:String) [Get-Item], FileNotFoundE
xception
+ FullyQualifiedErrorId : AlternateDataStreamNotFound,Microsoft.PowerShell.Commands.GetItemCommand
Get-Item C:\Test\Copy-Script.ps1
Directory: C:\Test
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 8/4/2011 11:15 AM 9436 Copy-Script.ps1
參數
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Credential
注意
任何與 PowerShell 一起安裝的提供者都不支援此參數。 若要模擬其他使用者,或在執行此 Cmdlet 時提升您的認證,請使用 Invoke-Command。
類型: | PSCredential |
Position: | Named |
預設值: | Current user |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Exclude
指定此 Cmdlet 省略的專案。 此參數的值會限定 path 參數。 輸入路徑項目或模式,例如 *.txt。 允許通配符。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Filter
以提供者的格式或語言指定篩選。 此參數的值會限定 path 參數。
篩選的語法,包括使用通配符,取決於提供者。 篩選比其他參數更有效率,因為提供者會在 Cmdlet 取得物件時套用它們,而不是在擷取對象之後讓 PowerShell 篩選物件。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Force
強制 Cmdlet 移除無法變更的專案,例如隱藏或唯讀檔案或只讀別名或變數。 Cmdlet 無法移除常數別名或變數。 實作會因提供者而異。 如需詳細資訊,請參閱 about_Providers。 即使使用 Force 參數,Cmdlet 也無法覆寫安全性限制。
類型: | SwitchParameter |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Include
指定要刪除的專案。 此參數的值會限定 path 參數。 輸入路徑專案或模式,例如 「*.txt」。。 允許通配符。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-LiteralPath
指定要移除之項目的路徑。 不同於 Path 參數,LiteralPath 的值會與輸入時完全相同。 不會將任何字元解譯為通配符。 如果路徑包含逸出字元,請以單引弧括住它。 單引號會告知PowerShell不要將任何字元解譯為逸出序列。
類型: | String[] |
別名: | PSPath |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Path
指定要移除之項目的路徑。 允許通配符。
類型: | String[] |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | True |
-Recurse
表示此 Cmdlet 會刪除指定位置及所有位置子專案中的專案。
當它與 Include 參數搭配使用時,Recurse 參數可能不會刪除所有子資料夾或所有子專案。
這是已知問題。
因應措施是,請嘗試
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Stream
Stream 參數是 FileSystem 提供者新增至 Remove-Item
的動態參數。
此參數僅適用於檔案系統磁碟驅動器。
您可以使用 Remove-Item
來刪除替代資料流。
不過,不建議排除封鎖從因特網下載之檔案的安全性檢查。
如果您確認下載的檔案是安全的,請使用 Unblock-File
Cmdlet。
此參數是在 Windows PowerShell 3.0 中引進的。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-UseTransaction
在作用中交易中包含 命令。 只有在交易進行中時,此參數才有效。 如需詳細資訊,請參閱 about_Transactions
類型: | SwitchParameter |
別名: | usetx |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
您可以使用管線將包含路徑但不是常值路徑的字串傳送至此 Cmdlet。
輸出
None
此 Cmdlet 不會傳回任何輸出。
備註
Remove-Item
Cmdlet 的設計目的是要處理任何提供者所公開的數據。 若要列出工作階段中可用的提供者,請輸入 Get-PsProvider
。 如需詳細資訊,請參閱 about_Providers。