Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Python

python os.path.exists failure

 

 

Python python RSS feed   Index | Next | Previous | View Threaded


koranthala at gmail

Oct 31, 2009, 8:26 AM

Post #1 of 4 (60 views)
Permalink
python os.path.exists failure

Hi all,
My code is as follows:

path = r'C:/"Program Files"/testfolder/2.3/test.txt'
if os.path.lexists(path):
print 'Path Exists'
else:
print 'No file found in path - %s' %path
print Popen(path, stdout=PIPE, shell=True).stdout.read()

The output comes as
No file found in path - C:/"Program Files"/testfolder/2.3/test.txt
but the test.txt file is opened.

The issue, I guess, is that the double quotes inside is failing the
check. But without the double quotes, Popen fails.
One solution, I can think is to check without double quotes, and then
using some code, put the double quotes back inside, but it looks quite
kludgy.

What is the usual solution to this?
--
http://mail.python.org/mailman/listinfo/python-list


benjamin.kaplan at case

Oct 31, 2009, 8:35 AM

Post #2 of 4 (58 views)
Permalink
Re: python os.path.exists failure [In reply to]

On Sat, Oct 31, 2009 at 11:26 AM, koranthala <koranthala[at]gmail.com> wrote:
> Hi all,
>   My code is as follows:
>
> path = r'C:/"Program Files"/testfolder/2.3/test.txt'
> if os.path.lexists(path):
>    print 'Path Exists'
> else:
>    print 'No file found in path - %s' %path
> print Popen(path, stdout=PIPE, shell=True).stdout.read()
>
> The output comes as
> No file found in path - C:/"Program Files"/testfolder/2.3/test.txt
> but the test.txt file is opened.
>
> The issue, I guess, is that the double quotes inside is failing the
> check. But without the double quotes, Popen fails.
> One solution, I can think is to check without double quotes, and then
> using some code, put the double quotes back inside, but it looks quite
> kludgy.
>

Just out of curiosity, does 'C:/"Program FIles"/' even work on the
Windows command line? The usual procedure is to put the entire path in
quotes. r'"C:\Program Files\..."'.


> What is the usual solution to this?
> --
> http://mail.python.org/mailman/listinfo/python-list
>
--
http://mail.python.org/mailman/listinfo/python-list


rschroev_nospam_ml at fastmail

Nov 1, 2009, 2:38 AM

Post #3 of 4 (47 views)
Permalink
Re: python os.path.exists failure [In reply to]

koranthala schreef:
> Hi all,
> My code is as follows:
>
> path = r'C:/"Program Files"/testfolder/2.3/test.txt'
> if os.path.lexists(path):
> print 'Path Exists'
> else:
> print 'No file found in path - %s' %path
> print Popen(path, stdout=PIPE, shell=True).stdout.read()
>
> The output comes as
> No file found in path - C:/"Program Files"/testfolder/2.3/test.txt
> but the test.txt file is opened.
>
> The issue, I guess, is that the double quotes inside is failing the
> check. But without the double quotes, Popen fails.
> One solution, I can think is to check without double quotes, and then
> using some code, put the double quotes back inside, but it looks quite
> kludgy.

You can put the double quotes around the whole path instead of just
around "Program Files" in the call to Popen().

The issue here is actually that os.path.exists() (and all other Python
functions) use the path exactly like you pass it; but with your call to
Popen(), the path is passed as an argument to the shell, and it needs to
be quoted for the shell to interpret that correctly.

So here's what I would do: first specify the path literally without
quotes, and quote it only when needed:

path = r'C:/Program Files/testfolder/2.3/test.txt'
if os.path.lexists(path):
print 'Path Exists'
else:
print 'No file found in path - %s' %path
print Popen('"%s"' % path, stdout=PIPE, shell=True).stdout.read()

Some other notes:
- Since you use forward slashes, there's no need to use a raw string
literal.
- You can just as well use os.path.exists() instead of
os.path.lexists(). The difference has to do with symbolic links, which
Windows doesn't have.
- I'm not sure what you expect the line with Popen to do. On my system,
it opens the specified text file in notepad and returns an empty string.
If that's what you want to do, it's easier with os.startfile().

--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov

Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list


aahz at pythoncraft

Nov 4, 2009, 1:57 PM

Post #4 of 4 (33 views)
Permalink
Re: python os.path.exists failure [In reply to]

In article <9aaf6a31-a34e-454b-a8f0-e206ad9b7040[at]t2g2000yqn.googlegroups.com>,
koranthala <koranthala[at]gmail.com> wrote:
>
>path = r'C:/"Program Files"/testfolder/2.3/test.txt'
>if os.path.lexists(path):
> print 'Path Exists'
>else:
> print 'No file found in path - %s' %path
>print Popen(path, stdout=PIPE, shell=True).stdout.read()

Avoiding shell=True is a Good Idea
--
Aahz (aahz[at]pythoncraft.com) <*> http://www.pythoncraft.com/

[on old computer technologies and programmers] "Fancy tail fins on a
brand new '59 Cadillac didn't mean throwing out a whole generation of
mechanics who started with model As." --Andrew Dalke
--
http://mail.python.org/mailman/listinfo/python-list

Python python RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.