# coding: utf8
import requests # 网络加载模块
import os # 系统文件模块
import time # 引入时间模块
import calendar; # 函数calendar。转换表示当前时间的元组 时间戳处理
def fileManager():
# 时间戳
# timeName = time.time()
iamgeName = calendar.timegm(time.gmtime())
# 时间格式串
# nameStr= time.localtime(timeName)
iamgeType = "jpg"
allNmae = "%s.%s" %(iamgeName,iamgeType)
print("开始文件操作")
# print(out)
# 打印当文件路径
print(__file__)
# 打印当前文件夹路径
print(os.path.abspath(os.path.dirname(__file__)))
# Python脚本工作的目录路径
currentFile = os.getcwd()
print(currentFile)
print(os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
# 获取上上级目录
print(os.path.abspath(os.path.dirname(os.getcwd())))
print(os.path.abspath(os.path.join(os.getcwd(), "..")))
# 分离扩展名:os.path.splitext()
# 获取路径名:os.path.dirname()
# 获取文件名:os.path.basename()
# 当前路径下添加的子文件夹
tempFile ="temp"
allFile = "%s/%s" %(currentFile,tempFile)
# 判断路径是否存在
# 存在 True
# 不存在 False
isExists = os.path.exists(allFile)
if not isExists:
print("不存在 创建文件夹")
# 创建文件夹路径
os.mkdir(allFile)
else:
print("存在")
allPath = "%s/%s" %(allFile,allNmae)
print(allPath)
# open(allPath, 'wb').write(r.content) # 将内容写入存档 比如网络下载的图片
if __name__ == '__main__':
fileManager()
# coding: utf8
import requests # 网络加载模块
import os # 系统文件模块
import time # 引入时间模块
import calendar; # 函数calendar。转换表示当前时间的元组 时间戳处理
def fileManager():
# 时间戳
# timeName = time.time()
iamgeName = calendar.timegm(time.gmtime())
# 时间格式串
# nameStr= time.localtime(timeName)
iamgeType = "jpg"
allNmae = "%s.%s" %(iamgeName,iamgeType)
print("开始文件操作")
# print(out)
# 打印当文件路径
print(__file__)
# 打印当前文件夹路径
print(os.path.abspath(os.path.dirname(__file__)))
# Python脚本工作的目录路径
currentFile = os.getcwd()
print(currentFile)
print(os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
# 获取上上级目录
print(os.path.abspath(os.path.dirname(os.getcwd())))
print(os.path.abspath(os.path.join(os.getcwd(), "..")))
# 分离扩展名:os.path.splitext()
# 获取路径名:os.path.dirname()
# 获取文件名:os.path.basename()
# 当前路径下添加的子文件夹
tempFile ="temp"
allFile = "%s/%s" %(currentFile,tempFile)
# 判断路径是否存在
# 存在 True
# 不存在 False
isExists = os.path.exists(allFile)
if not isExists:
print("不存在 创建文件夹")
# 创建文件夹路径
os.mkdir(allFile)
else:
print("存在")
allPath = "%s/%s" %(allFile,allNmae)
print(allPath)
# open(allPath, 'wb').write(r.content) # 将内容写入存档 比如网络下载的图片
if __name__ == '__main__':
fileManager()