import os
listing = os.listdir(path)
for infile in listing:
print infile
f = open(os.path.join(path, infile), 'r')
私は、ディレクトリ内のすべてのファイルを繰り返し処理するスクリプトをPythonで作成しています。問題は、いくつかのファイルの名前で発生します。ファイルの名前はTrade_Map _-_List_of_products_exported_by_Côte_d'Ivoireですが、それを開くためにその試みは、私は私が手名中にこのエラーPythonでディレクトリ内のファイルを開くとエンコードに問題が発生する
IOError: [Errno 2] No such file or directory: "C:\\Users\\Borut\\Downloads\\GC downloads\\izvoz\\Trade_Map_-_List_of_products_exported_by_Co^te_d'Ivoire.txt"
が本当の名前は、最後にCôte_d'Ivoireがあり得るカントとき私はlistdirを繰り返して、最後にCo^te_d'Ivoireを持っています。なにが問題ですか??