Skip to content

Instantly share code, notes, and snippets.

@n1ckfg
Created July 12, 2023 01:24
Show Gist options
  • Select an option

  • Save n1ckfg/20f6ec91dd40c1efe6c836600e028228 to your computer and use it in GitHub Desktop.

Select an option

Save n1ckfg/20f6ec91dd40c1efe6c836600e028228 to your computer and use it in GitHub Desktop.
import os
with open("names.txt", "r") as file:
lines = file.readlines()
for line in lines:
folder_name = line.strip().replace(" ", "_")
os.makedirs(folder_name, exist_ok=True)
print(f"Created folder: {folder_name}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment