Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This code works in IDLE but not in the commandline. Why the difference?

poem = 'poem.txt'

f = file(poem)
while True:
    line = f.readline()
    if len(line) == 0:
        break
    print line,
f.close()

The poem.txt file exists (it is a string). The shell output is this:

"Programming is fun When the work is done if you wanna make your work also fun: use Python!"

The commandline output is this:

"No such file or directory: 'poem.txt'"

The poem.txt file is in the same folder as the .py file. What is going wrong here?

share|improve this question
Can you try using ./poem.txt instead of poem.txt – Lelouch Lamperouge Dec 30 '11 at 20:57
How are you invoking your python script from the command line, can you provide an example? – DRH Dec 30 '11 at 20:57
@EknathIyer--wont that cause the pointer to go one folder up int he directory? – codeninja Dec 30 '11 at 20:58
@DRH--C:/Users/Python/filepractice.py Enter – codeninja Dec 30 '11 at 20:59
@codeninja: "wont that cause the pointer to go one folder up"? No. . is Linux for "This Directory". .. is the parent directory. – S.Lott Dec 30 '11 at 21:28

2 Answers

up vote 5 down vote accepted

I believe you are not RUNNING the python script from the same directory as the poem.txt is in. Verify this by putting:

import os
print os.getcwd()

in your script.

Update:

It seems like I was right. When you run: C:/Users/Python/filepractice.py the current working directory is the directory you are running it from, not the directory where filepractice.py is.

If you do this in cmd.exe

c:
cd \Users\Python
python filepractice.py

it would probably work.

share|improve this answer
@NiclasNilsson--worked like a charm. thank you. – codeninja Dec 30 '11 at 21:06
No problem... Glad to help. :) – Niclas Nilsson Dec 30 '11 at 21:08

Add the following lines just after the first line of your program

import os,fnmatch
print os.getcwd()
print fnmatch.filter(os.listdir(os.getcwd()),'poem.txt')

and verify if

1. The current working directory is the one containing 'poem.txt'
2. The o/p of the next line is an empty list or a list containing peom.txt

Please note, normally if the script and the input file resides in the same directory it does not guarantee that when your program would run, it would pick the file. This happens if you run the script with a path qualifier from a directory different from where the script is present.

  1. Either run the script from the path the Script is present
  2. Or change the name of the file with the full absolute path of the file name.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.