gialloporpora writes:
> I would like to know how to obtain the path where script is executed
> and the path where the file script is stored.
Does this help:
In [16]: import os
In [19]: os.getcwd()
Out[19]: '/home/vince'
In [21]: os.__file__
Out[21]: '/home/vince/src/pyramid_install/lib/python
On 2011-12-13, gialloporpora wrote:
> Dear all,
> I would like to create a little script to rename my files, I think to
> use argparse module to create it.
> I would like to know how to obtain the path where script is executed and
> the path where the file script is stored.
>
> For example, if I