这是我的脚本。
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 服务器上的目录)。