今天写脚本发现 os.system("cd /home/data") 这样并不能够成功的将路径切换的/home/data下,查了一下原因。
原来在python中和os.system实现机制有关系。
Execute the command (a string) in a subshell. This is implemented by calling the Standard C function system(), and has the same limitations.
也就是说:
- 父进程的环境变量(environment variables)会默认传递到子进程中(工作目录PWD就是环境变量之一)
- 使用system函数,子进程无法影响父进程中的环境变量
其实简单点说,就是os.system()的每一次操作都是开启一个子进程,操作完成后,会返回父进程,但是无法改变父进程的环境变量。
解决的办法有两种:
1, 是使用os提供的os.chdir(‘/home/data)
2, 是使用复合语句或者多个语句
os.system(‘cd hello && ls’)
或者 os.system(‘cd hello’;’ls’)
当然还有种更彻底的方法就是去使用subprocess模块。