I’ve noticed with docker that I need to understand what’s happening inside a container or what files exist in there. One example is downloading images from the docker index...
  • April 18, 2022
  • 0 Comments
This is what I have: glob(os.path.join('src','*.c')) but I want to search the subfolders of src. Something like this would work: glob(os.path.join('src','*.c')) glob(os.path.join('src','*','*.c')) glob(os.path.join('src','*','*','*.c')) glob(os.path.join('src','*','*','*','*.c')) But this is obviously limited...
  • April 17, 2022
  • 0 Comments