diff --git a/main.py b/main.py new file mode 100644 index 0000000..d85b266 --- /dev/null +++ b/main.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +import os +import sys + +def get_file_list(path): + '''present a list of files''' + os.li + return None + +def maximum_common_string(string, listofstrings, minimum_length): + '''compare items of a list, grouping by common strings, keeping groups as small as possible''' + return None + +def move_files_into_directory(files, directory): + return None + +def main(): + filepaths = os.listdir(sys.argv[1]) + print(filepaths) + return None + +if __name__ == "__main__": + main()