You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
target_files=set()
complete_dir_scans=set()
processed_dir_scans=set()
cancelled_dir_scans=set()
bigdata_analytics_dir_csv_files=set()
forfile_base_namein [scan.result_file_base_name, scan.pooled_scan_result_file_base_name]:
# Grab a list of files from the "target_files" directory. Will capture any .excluded_targets as well.target_files.add(glob.glob(os.path.join(target_files_dir, f"{file_base_name}.*targets")))
# Grab a list of files from the "complete" directory.complete_dir_scans.add(glob.glob(os.path.join(complete_dir, f"{file_base_name}*")))
# Grab a list of files from the "processed" directory.processed_dir_scans.add(glob.glob(os.path.join(processed_dir, f"{file_base_name}*")))
# Grab a list of files from the "cancelled" directory.cancelled_dir_scans.add(glob.glob(os.path.join(cancelled_dir, f"{file_base_name}*")))
# Grab a list of .csv files from the "for_bigdata_analytics" directory.bigdata_analytics_dir_csv_files.add(glob.glob(
os.path.join(bigdata_analytics_dir, f"{file_base_name}.csv")
))
The text was updated successfully, but these errors were encountered:
Something like
The text was updated successfully, but these errors were encountered: