11 lines
201 B
Python
11 lines
201 B
Python
|
import os
|
||
|
|
||
|
from voussoirkit import pipeable
|
||
|
|
||
|
for line in pipeable.go():
|
||
|
if os.path.isfile(line):
|
||
|
print('Deleting', line)
|
||
|
os.remove(line)
|
||
|
else:
|
||
|
print('Not a file', line)
|