Python - 文件名中的空格

时间:2010-02-22 02:02:25

标签: python linux file-io module

  

可能重复:
  How to escape os.system() calls in Python?

是否有一种Python方法可以使文件名安全(即在Python中以编程方式放置空格和转义(,)符号)?

2 个答案:

答案 0 :(得分:3)

open()中Python的空间已经“安全”了。至于os.system()和类似功能,请改用subprocess

答案 1 :(得分:2)

>>> import pipes
>>> pipes.quote("\&*!")
"'\\&*!'"