Why does not os.system(“cd mydir”) work and we have to use os.chdir(“mydir”) instead in python? [duplicate]

坚强是说给别人听的谎言 提交于 2019-12-17 21:11:05

问题


I tried doing a "pwd" or cwd, after the cd, it does not seem to work when we use os.system("cd"). Is there something going on with the way the child processes are created. This is all under Linux.


回答1:


The system call creates a new process. If you do system("cd .., you are creating a new process that then changes its own current working directory and terminates. It would be quite surprising if a child process changing its current working directory magically changed its parent's current working directory. A system where that happened would be very hard to use.




回答2:


os.system('cd foo') runs /bin/sh -c "cd foo"

This does work: It launches a new shell, changes that shell's current working directory into foo, and then allows that shell to exit when it reaches the end of the script it was called with.

However, if you want to change the directory of your current process, as opposed to the copy of /bin/sh that system() creates, you need that call to be run within that same process; hence, os.chdir().




回答3:


os.system (which is just a thin wrapper around the POSIX system call) runs the command in a shell launched as a child of the current process. Running a cd in that shell only changes the current directory of that process, not the parent.



来源:https://stackoverflow.com/questions/35277128/why-does-not-os-systemcd-mydir-work-and-we-have-to-use-os-chdirmydir-ins

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!