Python 은 현재 날짜(년,월,일)에 따라 다단 계 디 렉 터 리 를 만 드 는 방법 을 실현 합 니 다.

2603 단어 Python창설목차
실제 효 과 를 먼저 보고 현재 시간 은 2018.4.26 이다.

python 스 크 립 트 를 사용 하여 년 월 일 에 따라 다단 계 디 렉 터 리 를 생 성 합 니 다.만 든 디 렉 터 리 는 시스템 에서 생 성 된 로그 파일 을 넣 을 수 있 습 니 다.쉽게 찾 아 볼 수 있 습 니 다.코드 는 다음 과 같 습 니 다.

#!/usr/bin/env python
#coding=utf-8
import time
import os
#            
localtime=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
print('localtime='+localtime)
#        
year=time.strftime('%Y',time.localtime(time.time()))
#  
month=time.strftime('%m',time.localtime(time.time()))
#  
day=time.strftime('%d',time.localtime(time.time()))
#           
mdhms=time.strftime('%m%d%H%M%S',time.localtime(time.time()))
fileYear=os.getcwd()+'/upload_files/'+'/'+year
fileMonth=fileYear+'/'+month
fileDay=fileMonth+'/'+day
if not os.path.exists(fileYear):
  os.mkdir(fileYear)
  os.mkdir(fileMonth)
  os.mkdir(fileDay)
else:
  if not os.path.exists(fileMonth):
    os.mkdir(fileMonth)
    os.mkdir(fileDay)
  else:
    if not os.path.exists(fileDay):
      os.mkdir(fileDay)
#      , ‘timeFile_'+         
fileDir=fileDay+'/timeFile_'+mdhms+'.txt'
out=open(fileDir,'w')
#                
out.write('localtime='+localtime)
out.close()
날짜 와 시간 에 대한 기타 지식

import datetime
today = datetime.date.today()
r 분 초 까지 지정 하려 면@

import datetime
#@     2008/12/5 23:59:59
today = datetime.datetime(2008, 12, 5, 23, 59, 59)
#datetime    @  p,     
x = datetime.timedelta(seconds = 1)
y = datetime.date(2008, 12, 5, 23, 59, 59)
w = x + y
#w = datetime.datetime(2008, 12, 6, 0, 0)
#    23 r 59  59 
x = datetime.timedelta(hours = 23, minutes = 59, seconds = 59)
w = w + x
#w = datetime.datetime(2008, 12, 6, 23, 59, 59)
네,있 습 니 다.

import datetime
x = datetime.datetime.now() #F rg
#x = datetime.datetime(2008, 12, 5, 23, 59, 59) #  rg
x.year #   2008
x.month #   12
x.day #    5
x.hour  #r
x.minute # 
x.second #  59
총결산
위 에서 말 한 것 은 소 편 이 소개 한 Python 이 현재 날짜(년,월,일)에 따라 다단 계 디 렉 터 리 를 만 드 는 방법 을 실현 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기