create_product
src
common
util.py
config
config.properities
templates
template1.txt
create_product.py
Python36
我正在使用上面的目录结构。使用以下命令时:
pyinstaller create_product.py
它将在dist/create_product
文件夹中创建exe文件。但是exe文件需要配置文件夹和包含.properties和.txt文件的模板文件夹。默认情况下,这些文件夹are not
已复制到dist/create_product
中。如果手动复制,效果很好。
如何通过pyinstaller命令本身复制两个文件夹?