나는 여기에서 약간의 사악함을 알고 있지만이 질문을 우연히 발견했으며 모든 경우에 받아 들여진 해결책이 효과가 없었습니다. 어쨌든 제출하는 것이 도움이 될 것이라고 생각했습니다. 특히, "실행 가능"모드 감지 및 파일 확장자 제공 요구 사항. 또한 python3.3 shutil.which
( PATHEXT
)과 python2.4 + distutils.spawn.find_executable
( '.exe'
) 만 추가 하면 일부 경우에만 작동합니다.
그래서 나는 "슈퍼"버전을 썼습니다 (허용 된 답변과 PATHEXT
Suraj 의 제안 에 기초하여 ). 이 버전은 which
작업을 좀 더 철저히 수행하고 일련의 "광역"폭 우선 기술을 먼저 시도하고 결국 PATH
공간에서 보다 세분화 된 검색을 시도 합니다.
import os
import sys
import stat
import tempfile
def is_case_sensitive_filesystem():
tmphandle, tmppath = tempfile.mkstemp()
is_insensitive = os.path.exists(tmppath.upper())
os.close(tmphandle)
os.remove(tmppath)
return not is_insensitive
_IS_CASE_SENSITIVE_FILESYSTEM = is_case_sensitive_filesystem()
def which(program, case_sensitive=_IS_CASE_SENSITIVE_FILESYSTEM):
""" Simulates unix `which` command. Returns absolute path if program found """
def is_exe(fpath):
""" Return true if fpath is a file we have access to that is executable """
accessmode = os.F_OK | os.X_OK
if os.path.exists(fpath) and os.access(fpath, accessmode) and not os.path.isdir(fpath):
filemode = os.stat(fpath).st_mode
ret = bool(filemode & stat.S_IXUSR or filemode & stat.S_IXGRP or filemode & stat.S_IXOTH)
return ret
def list_file_exts(directory, search_filename=None, ignore_case=True):
""" Return list of (filename, extension) tuples which match the search_filename"""
if ignore_case:
search_filename = search_filename.lower()
for root, dirs, files in os.walk(path):
for f in files:
filename, extension = os.path.splitext(f)
if ignore_case:
filename = filename.lower()
if not search_filename or filename == search_filename:
yield (filename, extension)
break
fpath, fname = os.path.split(program)
# is a path: try direct program path
if fpath:
if is_exe(program):
return program
elif "win" in sys.platform:
# isnt a path: try fname in current directory on windows
if is_exe(fname):
return program
paths = [path.strip('"') for path in os.environ.get("PATH", "").split(os.pathsep)]
exe_exts = [ext for ext in os.environ.get("PATHEXT", "").split(os.pathsep)]
if not case_sensitive:
exe_exts = map(str.lower, exe_exts)
# try append program path per directory
for path in paths:
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
# try with known executable extensions per program path per directory
for path in paths:
filepath = os.path.join(path, program)
for extension in exe_exts:
exe_file = filepath+extension
if is_exe(exe_file):
return exe_file
# try search program name with "soft" extension search
if len(os.path.splitext(fname)[1]) == 0:
for path in paths:
file_exts = list_file_exts(path, fname, not case_sensitive)
for file_ext in file_exts:
filename = "".join(file_ext)
exe_file = os.path.join(path, filename)
if is_exe(exe_file):
return exe_file
return None
사용법은 다음과 같습니다.
>>> which.which("meld")
'C:\\Program Files (x86)\\Meld\\meld\\meld.exe'
허용되는 솔루션은 파일이 좋아 거기 때문에,이 경우에 나를 위해 일을하지 않았다 meld.1
, meld.ico
, meld.doap
, 등 또한 허용 대답에서 실행 테스트가 불완전하고 제공했기 때문에 (전적으로 첫번째 때문에 아마도) 대신에 반환 된 하나의 디렉토리에 오 탐지.