Batch Folder Creation Program & Application
Hello, I wanted to share with you a batch folder creation application that I have written in Python. With this application, you can create new folders starting from a certain number with a prefix and suffix that you specify. If you don't have any prefix or suffix, you can leave those parts blank. The folders are created in the directory where the application is located. I am sharing the codes below. I will also add the exe file that can be run with a single click for Windows soon, and if I have time, I can write an interface for the application and share it again. Those who want extra features can specify them in the comments. If you enter the correct email address when writing a comment, I can send you an email when I update the application. Stay well.
import os
a= int(input("Kaçtan Başlayacak:"))
b= int(input("Kaçta Bitecek:"))
onek= str(input("Ön Ekiniz Varsa Giriniz:"))
sonek= str(input("Son Ekiniz Varsa Giriniz:"))
while a <=b:
os.mkdir(onek+"{}".format(a)+sonek)
a +=1
Click-to-Run for Windows Operating System (.exe)
...:::Download Bulk Folder:::...
Note: Run the application in which directory you want to open a folder.
Bulk
folder opening, folder opening program, opening folders up to a certain
number, quick folder opening, opening folders from a text file.
0 comments: