8 lines
166 B
Python
8 lines
166 B
Python
import urllib.request, os
|
|
|
|
launchfolder = os.getcwd()
|
|
offprojects = launchfolder + "\OfficialProjects"
|
|
|
|
if not os.path.exists(offprojects):
|
|
os.mkdir(offprojects)
|