-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_fildg.py
44 lines (35 loc) · 1.16 KB
/
run_fildg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# run a program - select file dialog
# to select an .exe .py or .js file
from tkinter import Tk
from tkinter.filedialog import askopenfilename
import os
Tk().withdraw()
try:
# loc.wsp is located in %LOCALAPPDATA%\BlueMug
# loc.wsp is opened
locationFile = open(os.environ['LOCALAPPDATA']+'\\BlueMug\\loc.wsp')
# Reads the string in loc.wsp
wspLocation = locationFile.readline()
# strips the newline character '\n' from the end in wspLocation
wspLocation = wspLocation[0:-1]
# asks the user to select a file
filename = askopenfilename(
title="Run",
initialdir=(wspLocation),
filetypes=(("executable or script","*.exe;*.py;*.js"), ("all files", "*.*")))
# loc.wsp is closed
locationFile.close()
print(filename)
except:
# to display errors when the loc.wsp file doesn't exist
# this prompts the user to run BM so that it may create
# and define a new workspace, where the statements given
# in the above try block will be executed.
os.system('cls')
os.system('color 47')
os.system('echo.')
os.system('echo.')
print(" Run BM at least once!")
os.system('echo.')
os.system('echo.')
os.system('pause')