Python에서는 스크립트가 다른 스크립트를 호출하는 시나리오가 발생할 수 있으며 실행 중인 스크립트의 파일 경로를 검색해야 할 필요가 있습니다. 호출된 스크립트 내에서. 이를 달성하기 위한 메커니즘을 이해하는 것이 중요합니다.
한 가지 해결책은 Python 키워드 __file__을 사용하는 것입니다. 이 전역 변수는 현재 실행 중인 파일의 경로와 이름을 나타냅니다. 예를 들어 다음 코드 블록을 고려해 보세요.
import os # Fetch the current script's full path script_path = __file__ # Extract the file name without the full path script_name = os.path.basename(script_path) # Print the file name and path print(f"Script Name: {script_name}") print(f"Script Path: {script_path}")
이 코드를 사용하면 활성 스크립트의 파일 이름과 전체 파일 경로에 모두 액세스할 수 있습니다. 이 기술을 활용하면 호출 스크립트에서 이러한 정보를 인수로 전달할 필요성을 우회할 수 있습니다.
다른 사람들이 제안한 또 다른 변형은 os.path.realpath를 활용하여 잠재적인 심볼릭 링크를 해결하는 것입니다. 예를 들면 다음과 같습니다.
import os # Get the full path of the script script_path = __file__ # Resolve any symlinks real_script_path = os.path.realpath(script_path) # Extract the file name and path with the symlinks resolved script_name = os.path.basename(real_script_path) script_path = os.path.dirname(real_script_path) # Print the resolved file name and path print(f"Resolved Script Name: {script_name}") print(f"Resolved Script Path: {script_path}")
이러한 기술을 코드에 통합하면 현재 실행 중인 스크립트의 파일 경로와 이름을 효과적으로 검색하여 스크립트 상호 작용을 위한 견고한 기반을 제공할 수 있습니다.
위 내용은 Python에서 현재 스크립트의 파일 경로와 이름을 어떻게 얻을 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!