プロジェクトのルートから「prepend」で始まるすべてのファイルを削除する関数を構築しようとしています。これが私がこれまでに持っているものです
def cleanup(prepend):
prepend = str(prepend)
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
end = "%s*" % prepend
cmd = 'rm'
args = "%s/%s" % (PROJECT_ROOT, end)
print "full cmd = %s %s" %(cmd, args)
try:
p = Popen([cmd, args], stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True).communicate()[0]
print "p", p
except Exception as e:
print str(e)
運が悪いです - 何もしていないようです。私が間違っているかもしれないアイデアはありますか?ありがとうございました!