一、生成树形结构的目录
如下形式:
E:.
│ .buildpath│
├─attachment
│ │ image-not-exist.gif
│ │ readme
│ │
│ ├─2014
│ │ ├─01
│ │ │ ├─01
│ │ │ ├─02
│ │ │ ├─03
方法:用MS-Dos下的tree命令
1、在windows中打开命令行窗口
2、进入你想要列出目录下面 【cd E:\Develop\SourceCode】
3、命令提示符下运行 tree /f >文件名 【tree /f >Directory.txt】
4、刚才输出的文件 Directory.txt 就是你想要的东西。 【type Directory.txt】
二、导出文件信息目录列表
如下形式:
E:\Develop\SourceCode\attachment\2014 的目录
2014/09/19 19:27
2014/09/19 19:27
2014/09/19 19:27
2014/09/19 19:27
方法:用MS-Dos下的tree命令
1、在windows中打开命令行窗口
2、输入导出的目录和生成的文件 【dir E:\Develop\SourceCode\*.*/s >c:\Dir.txt】
3、刚才输出的文件 Dir.txt 就是你想要的东西。 【type Dir.txt】
原文:http://www.cnblogs.com/QinRun/p/4308187.html