python2 查看是否存在下面的文件 "/etc/pam.d/su", "/etc/pam.d/password-auth-ac", "/etc/pam.d/system-auth", "/etc/login.defs", "/etc/ssh/sshd_config", "/etc/vsftpd/vsftpd.conf", "/etc/profile", "/etc/motd"
时间: 2023-07-22 11:05:38 浏览: 102
etc各个文件的作用详解完整版
下面是使用Python 2检查文件是否存在的示例代码:
```python
import os
files_to_check = [
"/etc/pam.d/su",
"/etc/pam.d/password-auth-ac",
"/etc/pam.d/system-auth",
"/etc/login.defs",
"/etc/ssh/sshd_config",
"/etc/vsftpd/vsftpd.conf",
"/etc/profile",
"/etc/motd"
]
for file_path in files_to_check:
if os.path.exists(file_path):
print(f"File {file_path} exists")
else:
print(f"File {file_path} does not exist")
```
上述代码中,我们使用`os.path.exists()`函数来检查文件是否存在。对于每个文件路径,我们都会打印出相应的消息,指示文件是否存在。
请确保你有足够的权限来访问这些文件,并将文件路径添加到`files_to_check`列表中。运行代码后,将打印出每个文件的存在与否的消息。
阅读全文