试图让我的脚本的一部分起作用。该部分将让用户定义Web根目录,以便我们可以在该目录中搜索恶意软件。这是我正在研究的部分:我需要能够获得用户输入并将其添加为搜索功能的变量。我敢肯定我会把这一切弄错了。
import os
for root in raw_input("Where is the web root? "):
if os.path.isdir(root):
print "Using %r" % (root)
elif os.path.isdir(root):
print "Directory not found."
我想让脚本检查目录以确保它存在(如果输入错误),然后继续并运行对某些字符串的搜索。谢谢!
人到中年有点甜
相关分类