提问人:Pietro 提问时间:3/1/2012 最后编辑:VertexwahnPietro 更新时间:8/25/2017 访问量:337913
Windows中目录/文件夹的树视图?[关闭]
Tree view of a directory/folder in Windows? [closed]
问:
在 Linux/KDE 中,我可以将目录视为一棵树。如何在 Windows 7 中做到这一点?
考虑我不是说“Windows 资源管理器”。这只显示了目录,我也想要文件。
答:
在 Windows 命令提示符下,您可以使用“tree /F”查看当前文件夹的树以及所有降序文件和文件夹。
在 Windows 8.1 下的文件资源管理器中:
- 选择文件夹
- 按 Shift 键,右键单击鼠标,然后选择“在此处打开命令窗口”
- 键入并按 Enter 键
tree /f > tree.txt
- 使用MS Word打开“tree.txt”
- 将打开“文件转换 - 树 .txt”对话框
- 对于“文本编码”,勾选“MS-DOS”选项
现在,您有了一个可编辑的树结构文件。
这适用于从 Windows XP 到 Windows 8.1 的 Windows 版本。
评论
cmd.exe
TreeSize Professional 拥有您想要的。但它侧重于文件夹和文件的大小。
如果只是在树视图中查看,一种解决方法是使用Notepad++中的资源管理器或任何其他工具。
评论
您可以使用 Internet Explorer 在树中一起浏览文件夹和文件。它是收藏夹窗口中的文件资源管理器。您只需要将“收藏夹文件夹”替换为要视为根文件夹的文件夹
评论
I recommend WinDirStat.
I frequently use WinDirStat to create screen shots for user documentation of open folders and their contents.
It even uses the correct icons for Windows registered file types.
All I would say is missing is an option to display the files without their icons. I can live without it personally, since I am usually pasting the image into a paint program or Visio to edit it, but it would still be a useful feature.
评论
tree /f /a
About
The Windows command produces a tree of the current folder and all files & folders contained within it in ASCII format.tree /f /a
The output can be redirected to a text file using the parameter.>
Method
For Windows 8.1 or Windows 10, follow these steps:
- Navigate into the folder in file explorer.
- Press Shift, right-click mouse, and select "Open command window here".
- Type and press Enter.
tree /f /a > tree.txt
- Open the new file in your favourite text editor/viewer.
tree.txt
Note: Windows 7, Vista, XP and earlier users can type cmd
in the run command box in the start menu for a command window.
评论