You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
205 B
9 lines
205 B
import os
|
|
from util import get_drives()
|
|
def build(after,*starts):
|
|
if starts:
|
|
paths = starts
|
|
else:
|
|
paths = get_drives()
|
|
for path in paths:
|
|
for root,dirs,files in os.walk(
|