Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种在多个现有文件夹中创建新文件夹的方法。例如,我有文件夹 a、b、c.. 等,我想在每个现有文件夹中创建一个新文件夹,并使用 python 脚本将新文件夹命名为 a1、b1、c1、.. 等。
尝试循环浏览您的文件夹列表,而不是传入列表。这不是最干净的方法,但您可以执行以下操作:
parents = [p1, p2, p3] childern = [c1, c2, c3] for p in parents: for c in children: os.mkdir(os.path.join(p,c))