简体   繁体   中英

Powershell script to list files without folder names

I open a PS in a folder then use dir -name > asd.xls -recurse .

How can I modify this so it doesn't incude folders in the filenames?

Instead of using -name , try using

(Get-ChildItem -Recurse).Name > asd.xls

and be aware that you won't get a valid Excel workbook that way. You can get a valid CSV that can be loaded into Excel with

(Get-ChildItem -Recurse) | Select-Object -Property Name | Export-CSV -Path asd.csv -NoTypeInformation

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM