-1

这是我的脚本。

 import os

for dirname, dirnames, filenames in os.walk('.'):
# print path to all subdirectories first.
for subdirname in dirnames:
    print os.path.join(dirname, subdirname)

# print path to all filenames.
for filename in filenames:
    print os.path.join(dirname, filename)

# Advanced usage:
# editing the 'dirnames' list will stop os.walk() from recursing into there.
if '.git' in dirnames:
    # don't go into any .git directories.
    dirnames.remove('.git')

我正在使用命令行:python -m SimpleHTTPServer 8000 在 mac 终端上。现在我想从浏览器运行上面的脚本。它根本不起作用,只是输出文件的内容。如何使其运行(PHP 文件运行的方式并列出 apache Web 服务器上的目录)。

4

1 回答 1

0

您应该检查文档: http ://docs.python.org/2/library/simplehttpserver.html#module-SimpleHTTPServer

为了让您的脚本/函数运行,您必须使用您自己的 HTTPServer,例如通过从 继承SimpleHTTPServer并重载list_directories()来生成您的列表。但是,在这种情况下,您必须返回一个包含文件列表的实际 HTML 表示的字符串。

于 2013-09-27T07:31:25.940 回答