Python Forum
os.path.isdir(<whatever>) returns always True
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
os.path.isdir(<whatever>) returns always True
#1
I am running a Python script, which is supposed to check whether a directory already exists:
import os
#!/usr/bin/env python 

source_dir = <inexistent directory>

if (os.path.isdir(source_dir)):
    print "source directory not found"
else:
    print "source directory found"
    os.system("ls -l " + source_dir)
will always enter the else statement (directory found) for an non-existing directory
and fail while trying to display the content of the inexistent directory.

What is wrong in my code?

My code runs correctly if run inside the console Python interpreter.
My code always fails if run as a script on the very same console.

Fabrizio
Reply


Messages In This Thread
os.path.isdir(<whatever>) returns always True - by Fabrizio - Dec-04-2018, 02:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  WebDriverException: Message: 'PATH TO CHROME DRIVER' executable needs to be in PATH Led_Zeppelin 1 2,239 Sep-09-2021, 01:25 PM
Last Post: Yoriz
  path.exists returning True when it shouldn't natha18 0 1,518 Sep-21-2020, 01:04 PM
Last Post: natha18
  Recursive function returns None, when True is expected akar 0 3,411 Sep-07-2020, 07:58 PM
Last Post: akar
  Returning True or False vs. True or None trevorkavanaugh 6 9,318 Apr-04-2019, 08:42 AM
Last Post: DeaD_EyE
  .pth file does not show up in sys.path when configuring path. arjunsingh2908 2 5,802 Jul-03-2018, 11:16 AM
Last Post: arjunsingh2908
  why the generator expression after IF always returns True HenryJ 1 2,736 Feb-13-2018, 07:14 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020