3

なぜこれが起こっているのか分かりません。関数は次のとおりです。

def scanWallDir(basedir, scansubdirs=True):
    wallsOut = []
    for entry in os.scandir(basedir):
        if entry.is_file():
            print(("file " + entry.name))
        elif entry.is_dir():
            print(("dir  " + entry.name))

そしてエラー:

/usr/bin/python2.7 /home/aidan/Code/ulwscs/ulwscs.py
Traceback (most recent call last):
  File "/home/aidan/Code/ulwscs/ulwscs.py", line 38, in <module>
    scanWallDir("/media/Crossover/Wallpapers")
  File "/home/aidan/Code/ulwscs/ulwscs.py", line 11, in scanWallDir
    for entry in os.scandir(basedir):
AttributeError: 'module' object has no attribute 'scandir'

Process finished with exit code 1

何が問題になっているのか知っている人はいますか?

4

1 に答える 1

6

Pycharm は、使用していた Python のバージョンをリセットしました。私はアホです。

于 2016-03-10T20:00:48.800 に答える