Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我在 c:\z 中有 3 个文件
PS C:\z> dir | select name Name ---- a.png b.png c.png
我想要的是一个字符串。
a.png,b.png,c.png
谢谢。
如果你想要一个字符串数组,你所要做的就是:
dir | select -expand name
如果您希望将其作为单个字符串,并以逗号分隔值:
(dir | select -expand name) -join ","
只是一个小改进,您只能使用名称开关来获取名称:
(dir -name) -join ','