Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用system()R 中的函数运行另一个程序。我正在为另一个程序提供命令行功能。当我对参数进行错误编码时,我会收到一条错误消息,指出我无法删除关联的文件,因为它仍然由我在调用中system()调用的程序控制。
system()
除了重新启动我目前正在做的 R 之外,有没有办法手动杀死这些类型的进程?
一个例子是这样的:
system("python myFile.py")
在 Windows 上,您可以使用TASKKILL命令来终止进程。
TASKKILL
例如
TASKKILL /IM python*