除了我在这里提出的问题之外,我还在整理错误异常。我已经整理好从另一个文件中读取文件列表,但是如果引用的文件之一不存在,我会很苦恼。我希望能够识别错误,通过电子邮件发送,然后创建文件以供以后使用。但是,我正在输入的“尝试,除了,否则”块出现缩进错误。看起来它应该可以工作,但我无法让它运行!呸!帮助!!!
日志文本文件包含以下内容:
//server-1/data/instances/devapp/log/audit.log
//server-1/data/instances/devapp/log/bizman.db.log
//server-1/data/instances/devapp/log/foo.txt #这个文件在服务器上不存在
我的代码如下。我认为最好将其完整发布而不是一个片段,以防它是程序中较早的东西正在破坏它!
import os, datetime, smtplib
today = datetime.datetime.now().strftime('%Y-%m-%d')
time_a = datetime.datetime.now().strftime('%Y%m%d %H-%M-%S')
checkdir = '/cygdrive/c/bob/python_'+ datetime.datetime.now().strftime('%Y-%m-%d')+'_test'
logdir = '/cygdrive/c/bob/logs.txt'
errors = '/cygdrive/c/bob/errors.txt'
#email stuff
sender = 'errors@company.com'
receivers = 'bob@company.com'
message_1 = """From: errors <errors@company.com>
To: Bob <bob@company.com>
Subject: Log file not found on server
A log file has not been found for the automated check.
The file has now been created.
"""
#end of email stuff
try:
os.chdir (checkdir) # Try opening the recording log directory
except (OSError, IOError), e: # If it fails then :
os.mkdir (checkdir) # Make the new directory
os.chdir (checkdir) # Change to the new directory
log = open ('test_log.txt', 'a+w') #Create and open log file
else :
log = open ('test_log.txt', 'a+w') #Open log file
log.write ("***starting file check at %s ***\r\n\r\n"%tme_a)
def log_opener (logdir) :
with open(logdir) as log_lines: #open the file with the log paths in
for line in log_lines: # for each log path do :
timestamp = time_a + (' Checking ') + line + ( '\r\n' )
try:
with open(line.strip()) as logs:
except (OSError,IOError), e:
try:
smtpObj = smtplib.SMTP('localhost')
smtpObj.sendmail(sender, receivers, message)
log.write (timestamp)
log.write ("Log file not found. Email sent. New file created.")
except SMTPException:
log.write (timestamp)
log.write ("Log file not found. Unable to send email. New file created.")
else : # The following is just to see if there is any output... More stuff to be added here!
print line + ( '\r\n' )
log.write (timestamp)
print "".join(logs.readlines())
print log_opener(logdir)
我得到的错误如下:
$ python log_5.py
File "log_5.py", line 38
except (OSError,IOError), e:
^
IndentationError: expected an indented block
据我所知,它应该可以工作,但是......
作为补充说明,我学的时间不长,所以我的很多代码都是从各种教程中修改的,或者是从这里或网络上的其他地方借来的。我可能在这里犯了一个非常基本的错误,所以请耐心等待!
非常感谢您的帮助!