在自定义目录下创建以当前时间为文件名的文件,如果存在则不创建 点击复制后,将打开C知道体验页 以下是Python代码实现:
时间: 2023-06-12 08:05:36 浏览: 86
python 实现:如果文件夹不存在就创建,如果文件存在就清空(csdn)————程序.pdf
5星 · 资源好评率100%
```python
import os
import time
# 获取当前时间
current_time = time.strftime('%Y%m%d%H%M%S', time.localtime(time.time()))
# 自定义目录
dir_path = '/path/to/directory/'
# 文件名为当前时间
file_name = current_time + '.txt'
# 如果文件不存在,创建文件
if not os.path.exists(dir_path + file_name):
with open(dir_path + file_name, 'w') as f:
f.write('文件内容')
print('文件创建成功!')
else:
print('文件已存在!')
```
其中,`dir_path` 为自定义目录的路径,可以根据实际情况进行修改。
阅读全文