The folder a script is executed in

Ant antroy at gmail.com
Tue Aug 21 05:27:17 EDT 2007


On Aug 21, 10:10 am, aine_ca... at yahoo.com wrote:
...
> myLocation = GetMyLocation()
> print myLocation
>
> >> C:/folder

Do you mean the folder containing the script? Or the current working
directory?

If the former, then look at os.path.split(sys.argv[0])[0]
If the latter, try something like: os.path.abspath(os.curdir)

--
Ant...

http://antroy.blogspot.com/





More information about the Python-list mailing list