15 lines
343 B
Python
15 lines
343 B
Python
import urllib.request, os
|
|
|
|
launchfolder = os.getcwd()
|
|
offprojects = launchfolder + "\OfficialProjects"
|
|
launcherfiles = launchfolder + "\!LAUNCHERFILES"
|
|
|
|
################### Checking folders #####################
|
|
if not os.path.exists(offprojects):
|
|
os.mkdir(offprojects)
|
|
|
|
if not os.path.exists(launcherfiles):
|
|
os.mkdir(launcherfiles)
|
|
|
|
|