香港云服务器python中查看文件创建具体操作方法:
1、在win系统的开始菜单中找到python程序。
2、在python程序目录中找到并打开idle工具程序。
3、在idle工具中点击左上角的“File”并选择“New File”新建一个shell脚本。
4、在shell脚本中输入以下指令导入os模块和time模块。
import os,time #导入os模块和time模块
5、最后通过以下指令查看文件创建时间即可。
os.path.getctime(path) #path指的是文件路径
相关实例:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import os,time
file=’/root/yisu.txt’ # 文件路径
print(os.path.getctime(file)) #输出文件创建时间