info = subprocess.run("dir", shell=True, capture_output=True)
print(info.stdout)
但是我有带é
的文件,它们却打印为,
...我也有空闲字节的问题,我明白了:
49ÿ372ÿ921ÿ856 octets libres
我尝试对其进行解码,但出现错误,提示AttributeError: 'std_output' object has no attribute 'decode'
显然,它已经被解码了。
我正在尝试使用info = subprocess.run(“ dir”,shell = True,capture_output = True)print(info.stdout)获取当前工作目录的文件和目录,但是我有带有é的文件,并且它们...
is
是预期的行为。