And you might be confused about what the current working directory is.
 It is not,
in general, the directory containing the .py file in which you are
running at the time.
It is (unless explicitly changed) the working directory of the shell
at the time python
was started.  For example, if your current directory is /home/me and
you type, at
the shell, "tmp/foo.py", or "/home/me/tmp/foo.py", and foo executes os.getcwd(),
it will get "/home/me", not "/home/me/tmp".   So when using the development
server, os.getcwd() will typically return the directory containing
manage.py (the
"project directory").  I'm not sure about the modwsgi case.

Bill

On Wed, Mar 3, 2010 at 9:05 AM, andreas schmid <a.schmi...@gmail.com> wrote:
> zubin71 wrote:
>> >From a method defined in a view i need to get the source of an html
>> file in the templates directory. This is how i tried it out. An error
>> occurs at the line,
>>
>> f = open(os.path.join(os.getcwd(), '../templates/test.html'), 'r') ;
>>
> the output of your os.path.join is something like
> '/your/current/workingdir/../templates/test.html'
>> However, this causes an error, "File or directory not found".
>>
>> What do i do? Please help.
>>
> if you want to get a dir a level over your actual workingdir you should
> maybe slice the output of os.getcwd() and add the right from there on..
>
>> thankx in advance,
>> zubin71
>>
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to