作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用以下代码将共享文件夹结构输出到文本文件:
$path = "\\server\share"
$file = "c:\share-folders.txt"
get-childitem "$path" -recurse -directory | select -expand fullname >> "$file"
$path = "\\server\share"
$file = "c:\share-folders.txt"
Get-ChildItem "$Path" -Recurse -Directory | Select -Expand FullName | Tee-Object -FilePath "$File" -Append
最佳答案
这对我有用
get-childitem "$path" -recurse -directory | select -expand fullname | %{ Write-Output $_ ; $_ >> "$file"}
get-childitem "$path" -recurse -directory | select -expand fullname | tee -file "$file"
关于powershell - Powershell-输出目录递归到控制台和文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25565087/
我是一名优秀的程序员,十分优秀!