Re: Opening a drive folder from Python

2005-06-15 Thread John Henry
Thanks, Chad. That works. -- John -- http://mail.python.org/mailman/listinfo/python-list

RE: Opening a drive folder from Python

2005-06-14 Thread Hughes, Chad O
I think you are talking about the following: from win32com.client import Dispatch path = raw_input('Type in a path: ') s=Dispatch('WScript.Shell') s.Run('Explorer %s'%path) Chad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Henry Sent: Tuesday,

Re: Opening a drive folder from Python

2005-06-14 Thread Larry Bates
You should supply more information: What operating system? What do you mean by "drive folder"? Does this mean file dialog? Or perhaps you mean an Explorer Window? Larry Bates John Henry wrote: > Can somebody please tell me how to pop open a drive folder from a > Python script? > > Thanks. >