This commit is contained in:
2024-08-15 20:36:36 +02:00
parent 166603f931
commit db749bb2d6
2 changed files with 3 additions and 1 deletions

View File

View File

@@ -17,7 +17,9 @@ def show_all_files_directory(dir_path = str, search_endung = False, search_strin
return li_all
def simple_files(dir_path):
return os.listdir(dir_path)
files = os.listdir(dir_path)
return [f for f in files if os.path.isfile(dir_path + '/'+f)]
def main(check_list = list, main_folder_in = str):
output_list = []