setup.py
from distutils.core import setup
import py2exe
setup(console=['program.py'])
エラー
Traceback (most recent call last):
File "program.py", line 427, in <module>
File "program.py", line 242, in __init__
WindowsError: [Error 267] The directory name is invalid: 'C:\\Users\\Bob\applications\\Program\\test\\v0.6\\dist\\library.zip/*.*'
library
ディレクトリ名は、distフォルダーにあり、コンパイル中に作成されたというzipファイルを指します。
program.pyの240行目から246行目
file_list = []
root_dir = sys.path[0]
for path in os.listdir(root_dir):
full_path = os.path.join(root_dir, path).lower()
if os.path.isfile(full_path) and full_path.endswith('txt'):
# create list of (filename, dir) tuples
file_list.append((path.lower(), full_path))
program.pyの427行目
gui = GuiTk(win)
問題の原因となるアイデアはありますか?Windows764ビットとPortablePython2.7.2.1を使用して実行可能ファイルを作成します。コンパイル手順中に他のエラーはありません。