-1
這是我的腳本。創建一個python「web腳本」來列出文件夾中的所有目錄和文件
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服務器上列出目錄)。
使用Python webframework像瓶子或瓶子 –