Re: choose and open a folder in Windows
thanks a lot, it works and sorry for intelligent questions:) -- http://mail.python.org/mailman/listinfo/python-list
RE: choose and open a folder in Windows
[palo] | But I didn't find how to make windows to open | a given directory in file expolorer) | P. At the risk of suggesting the obvious, have you tried: import os os.system ("explorer.exe c:\\temp") or import os os.startfile ("c:\\temp") or something similar? TJG _