Ubuntu 用python运行文件夹
时间: 2023-12-31 12:06:46 浏览: 124
利用python进行文件操作
如果您想要在Ubuntu上使用Python运行整个文件夹,您可以编写一个包含递归遍历文件夹并运行Python脚本的Python脚本。以下是一个简单的示例:
```python
import os
def run_scripts(directory):
for root, dirs, files in os.walk(directory):
for file in files:
if file.endswith(".py"):
path = os.path.join(root, file)
print("Running script:", path)
os.system("python " + path)
run_scripts("/path/to/directory")
```
该脚本会遍历指定目录下的所有文件夹和文件,并查找以“.py”结尾的文件。如果找到了这样的文件,它将使用os.system()函数运行该文件。您可以将“/path/to/directory”替换为您要运行的目录的路径。请注意,这个脚本可能会运行非常多的文件,因此请确保您知道它将要运行的内容,并且只运行您信任的脚本。
阅读全文