Commit 038af537 authored by Cresson Remi's avatar Cresson Remi
Browse files

WIP: drs import

1 merge request!1Develop
Pipeline #32885 passed with stage
in 34 seconds
Showing with 2 additions and 1 deletion
+2 -1
import spot
import argparse
import os
from glob import glob
# Arguments
......@@ -9,7 +10,7 @@ params = parser.parse_args()
# List files
print("List files...")
files = glob("{}/*/".format(params.root_dir), recursive=True)
files = [y for x in os.walk(params.root_dir) for y in glob(os.path.join(x[0], "DIM*.XML"))]
print(len(files))
for i in range(0,100):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment