cx_Freeze에 폴더 포함
cx_Freeze를 사용하여 애플리케이션을 배포할 때 개별 파일을 포함하면 원하는 폴더에 배치되지 않을 수도 있습니다. 이를 극복하기 위해서는 include files 인수 구성을 통해 디렉터리 포함을 이해하는 것이 핵심입니다.
포함 파일 설정
buildOptions = dict(include_files = [(absolute_path, 'final_filename')])
예:
buildOptions = dict(include_files = [('/path/to/file.txt', 'my_file.txt')])
buildOptions = dict(include_files = ['relative/path/to/folder'])
예:
buildOptions = dict(include_files = ['my_folder/'])
또는 절대 경로를 튜플로 변환하여 지정할 수 있습니다.
설정 예
다음은 설정 예입니다. :
buildOptions = dict(include_files = [('/path/to/file1.txt', 'new_file1.txt'), 'my_folder/']) setup( name = "appname", version = "1.0", description = "description", author = "your name", options = dict(build_exe = buildOptions), executables = executables)
다음 단계를 따르면, cx_Freeze에는 배포된 애플리케이션의 일부로 개별 파일과 폴더가 모두 포함됩니다.
위 내용은 애플리케이션을 배포할 때 cx_Freeze에 폴더를 포함하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!