Posts by Andrei Savi • 13 points
1 post
-
1
votes2
answers1183
viewsQ: How to create a Python directory inside a server?
Using the function mkdir it is possible to create a file in any directory inside the folders of the computer: Import os diretorio = "C:\\Users\\CRIACAO 2\\Desktop\\teste" os.mkdir(diretorio) But…