K
Kilicaslan Fatih
Dear Diez B. Roggisch,
After clicking a button on the GUI the user can browse
and than select a ".c" file to assign to the other
program I have mentioned.
But in this way I can only select one file. I don't
know how to implement this application for all of the
"*.c" files in a folder. Do I need to write a for loop
for this? Or maybe I can create a list after
sequentially browsing files and than assign this list
as a parameter to the function I am executing.
Here is a part of the code, I am new to Python and
OOP. Sorry for the ambiguity in my question.
class App:
#Browsing the file, this is triggered
#through a menu
def browseFile(self):
global file
file = askopenfilename(filetypes = [("C source
code", "*.c"), ("All Files", "*.*")])
#Running the CC program
#This is triggered by a button push
def runCC(self, event):
if type(file)==str:
dosya = file
cmd = 'cc ' + dosya
return os.system(cmd)
else:
message = tkMessageBox.showinfo("Window
Text", "Please Browse a File Firstly")
print message
Regards,
Fatih K.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
After clicking a button on the GUI the user can browse
and than select a ".c" file to assign to the other
program I have mentioned.
But in this way I can only select one file. I don't
know how to implement this application for all of the
"*.c" files in a folder. Do I need to write a for loop
for this? Or maybe I can create a list after
sequentially browsing files and than assign this list
as a parameter to the function I am executing.
Here is a part of the code, I am new to Python and
OOP. Sorry for the ambiguity in my question.
class App:
#Browsing the file, this is triggered
#through a menu
def browseFile(self):
global file
file = askopenfilename(filetypes = [("C source
code", "*.c"), ("All Files", "*.*")])
#Running the CC program
#This is triggered by a button push
def runCC(self, event):
if type(file)==str:
dosya = file
cmd = 'cc ' + dosya
return os.system(cmd)
else:
message = tkMessageBox.showinfo("Window
Text", "Please Browse a File Firstly")
print message
Regards,
Fatih K.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com