检查文件是否为空以及是否为f.write

时间:2017-10-09 18:17:07

标签: string if-statement fwrite python-2.6

好的,所以我基本上试图编写一组特定的代码,如果文件中没有任何内容存在的话。这是我正在使用的代码:

import sys
import os
from string import *

userType = raw_input("Enter text: ")

bigtable = '''<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;    
}
</style>
</head>
  <body>
    <table style="width:50%">
        <tr>
          <th>Server</th>
          <th>Address</th>
          <th>Name</th> 
          <th>Address2</th>
        </tr>'''

if userType == 'file -n' or userType == 'file --nice':

    with open('Pass.html', 'r') as f:

      if str(f) != 0 :
        print('butters')
      else:
        f.write(bigtable)

任何人都可以解释为什么这不起作用,是否可以扫描文件然后将特定信息写入其中?

找到了一种方法:

    with open('Pass.html', 'a') as f:

        if os.path.getsize('C:\Python26\Pass.html') != 0 :
            print('butters')
        else:
            f.write(bigtable)

1 个答案:

答案 0 :(得分:1)

一旦您以附加模式打开文件(如编辑中所示),请使用tell()查看该文件之前是否为空(或不存在)。