嘿我试图执行以下命令(使用psutil.Popen和python 2.7):
"C:\Program Files (x86)\Microsoft Office\root\Office16\EXCEL.EXE" "C:\docs\ת.xlsm"
使用此代码:
dir = u"C:\\docs"
doc = os.listdir(dir)[0]
full_path = os.path.join(dir, doc)
command = u"\"C:\\Program Files (x86)\\Microsoft Office\\root\\Office16\\EXCEL.EXE\" \"{}\"".format(full_path)
process = psutil.Popen(command)
但是我得到了这个例外:
process = psutil.Popen(command)
File "C:\Python27\lib\site-packages\psutil\__init__.py", line 1370, in __init__
self.__subproc = subprocess.Popen(*args, **kwargs)
File "C:\Python27\lib\subprocess.py", line 390, in __init__
errread, errwrite)
File "C:\Python27\lib\subprocess.py", line 640, in _execute_child
startupinfo)
UnicodeEncodeError: 'ascii' codec can't encode character u'\u05ea' in position 102: ordinal not in range(128)
我发现了这个相关的问题: subprocess.Popen with a unicode path。但是每一个给出的答案对我来说都不起作用。
使用 subprocess.Popen(command.encode(locale.getpreferredencoding())),抛出以下异常:
Traceback (most recent call last):
File "scanner_watcher.py", line 53, in _execute
self.scanner.execute(path)
File "scanner_watcher.py", line 356, in execute
self._execute(file_path)
File "scanner_watcher.py", line 201, in _execute
self.open_scanner(file_path, file_package)
File "scanner_watcher.py", line 287, in open_scanner
self.scanner_process = psutil.Popen(command.encode(locale.getpreferredencoding()))
File "C:\Python27\lib\encodings\cp1252.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_table)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u05ea' in position 102: character maps to <undefined>
使用 path.encode(&#39; mbcs&#39;)将所有Unicode字符转换为问号。
我不想使用 os.startfile 因为我需要在程序上使用不同的命令然后处理打开的进程(当 os.startfile 不允许这样做。
我发现了这个修改过的Popen: https://gist.github.com/vaab/2ad7051fc193167f15f85ef573e54eb9但是这段代码没有经过全面测试。
在python 2.7中使用带有Unicode命令的 Popen 是否有正确的方法?
感谢。
答案 0 :(得分:0)
问题在于您在定义command
时使用双引号。它的编写方式将语句拆分为所有错误位置的多个字符串。用单引号代替第一个和最后一个引号(打开和关闭字符串)为我解决了这个问题。
command = u'\"C:\\Program Files (x86)\\Microsoft Office\\root\\Office16\\EXCEL.EXE\" \"{}\"'.format(full_path)