获取文件名和路径的列表

发布于 2024-12-18 19:19:21 字数 183 浏览 0 评论 0原文

我有一个包含几个子目录的目录,我试图获取文件名及其路径的列表,然后我想在 Excel 中获取这些数据。有没有办法在 Windows 7 中使用命令行来执行此操作?

所需的 Excel 结果:

A1: FILENAME.JPG B1: X:\DIR1\DIR2\FIELNAME.JPG

I have a directory with several sub-directories and I am trying to get a list of the file names and their path, and then I would like to have this data in Excel. Is there a way I can do this with the command line in Windows 7?

Desired Excel result:

A1: FILENAME.JPG B1: X:\DIR1\DIR2\FIELNAME.JPG

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林散布 2024-12-25 19:19:21
echo off & for %i in (*) do dir %i /b & dir .\%i /s /b

这将在名为 foo 的目录中生成以下内容,其中包含文件 a、b 和 c:

a
c:\foo\a
b
c:\foo\b
c
c:\foo\c

因此只需将输出通过管道传输到文件,然后将其导入到 Excel 中。您必须在 Excel 中进行一些操作才能将行分成两列而不是行,但这应该不难。

要正确地通过管道传输,您需要记住对 dir 命令进行管道传输并附加到文件,如下所示:

echo off & for %i in (*) do dir %i /b >> foo.csv & dir .\%i /s /b >>foo.csv
echo off & for %i in (*) do dir %i /b & dir .\%i /s /b

That will produce the following in a directory named foo with files a, b and c:

a
c:\foo\a
b
c:\foo\b
c
c:\foo\c

So just pipe the output to a file then import that into Excel. You'll have to do some manipulations in Excel to get the lines into two columns instead of rows, but that shouldn't be difficult.

To pipe it correctly, you need to remember to pipe both dir commands and append to the file, like this:

echo off & for %i in (*) do dir %i /b >> foo.csv & dir .\%i /s /b >>foo.csv
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文