我有一個文件的目錄,只要它們沒有現有的指定擴展名,我就會附加文件擴展名。因此,將.txt添加到不以.xyz結尾的所有文件名中。 PowerShell似乎是一個很好的候選人,但我對此一無所知。我會怎麼做呢?使用PowerShell將擴展名添加到文件
14
A
回答
16
+1給EBGreen,除了(至少在XP上)get-childitem的「-exclude」參數似乎不起作用。幫助文本(gci - ?)實際上表示「此參數在此cmdlet中無法正常工作」!
所以,你可以手動篩選這樣的:
gci
| ?{ !$_.PSIsContainer -and !$_.Name.EndsWith(".xyz") }
| %{ ren -new ($_.Name + ".txt") }
3
考慮標準shell中的DOS命令FOR。
C:\Documents and Settings\Kenny>help for
Runs a specified command for each file in a set of files.
FOR %variable IN (set) DO command [command-parameters]
%variable Specifies a single letter replaceable parameter.
(set) Specifies a set of one or more files. Wildcards may be used.
command Specifies the command to carry out for each file.
command-parameters
Specifies parameters or switches for the specified command.
...
In addition, substitution of FOR variable references has been enhanced.
You can now use the following optional syntax:
%~I - expands %I removing any surrounding quotes (")
%~fI - expands %I to a fully qualified path name
%~dI - expands %I to a drive letter only
%~pI - expands %I to a path only
%~nI - expands %I to a file name only
%~xI - expands %I to a file extension only
%~sI - expanded path contains short names only
%~aI - expands %I to file attributes of file
%~tI - expands %I to date/time of file
%~zI - expands %I to size of file
%~$PATH:I - searches the directories listed in the PATH
environment variable and expands %I to the
fully qualified name of the first one found.
If the environment variable name is not
defined or the file is not found by the
search, then this modifier expands to the
empty string
18
下面是PowerShell方法:
gci -ex "*.xyz" | ?{!$_.PsIsContainer} | ren -new {$_.name + ".txt"}
還是做了一點更詳細的,更容易理解:
Get-ChildItem -exclude "*.xyz"
| WHere-Object{!$_.PsIsContainer}
| Rename-Item -newname {$_.name + ".txt"}
編輯:有,當然是沒有錯DOS方式。 :)
EDIT2:Powershell確實支持隱式(和明確的)線延續,正如馬特漢密爾頓的帖子顯示它確實讓事情更容易閱讀。
1
同時使用PowerShell的V4發現這很有幫助。
Get-ChildItem -Path "C:\temp" -Filter "*.config" -File |
Rename-Item -NewName { $PSItem.Name + ".disabled" }
相關問題
- 1. 將擴展名添加到文件
- 2. 將R中的文件擴展名添加到多個文件
- 3. 用bash添加文件擴展名到文件
- 4. powershell - 提取文件名和擴展名
- 5. 在PHP中命名沒有擴展名的文件,如何將擴展名添加到文件中?
- 6. 將文件擴展名添加到f = io.open()
- 7. 如何將文件擴展名添加到ignore-on-commit svn changelist?
- 8. 將文件擴展名添加到「href」值是否更好?
- 9. 如何使用javascript將文件擴展名添加到用戶輸入字段
- 10. 使用Rock Ridge擴展將文件添加到ISO
- 11. 如何使用鉻擴展將斷點添加到JavaScript文件
- 12. 從grep count添加文件擴展名
- 13. 通過htaccess添加文件擴展名
- 14. Java JFileChooser getAbsoluteFile添加文件擴展名
- 15. DownloadManager不添加文件擴展名
- 16. Multer沒有添加文件擴展名
- 17. 批量添加文件擴展名
- 18. 將文件擴展名添加到Android應用並處理文件
- 19. 使用PowerShell將前導零添加到文件名字符串
- 20. 遞歸添加文件擴展名到所有文件
- 21. 使用Powershell比較具有不同擴展名的文件名
- 22. 將擴展添加到PHP.ini?
- 23. PowerShell 3的文件擴展名
- 24. Powershell文件擴展名匹配*
- 25. PowerShell可以擴展文件名嗎?
- 26. 如何使用.htaccess將擴展名添加到域url?
- 27. 添加使用JavaScript新的文件擴展名不刪除舊
- 28. 如何擴展名的文件添加到VSIX MEF編輯器擴展
- 29. 如何使用jmeter運行Powershell文件(擴展名爲.ps1)?
- 30. 使用Powershell刪除隨機生成的文件擴展名
我在XP上,我完全按照沒有問題的方式運行。 – EBGreen 2008-10-30 21:51:01