Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   text file edit object (http://www.velocityreviews.com/forums/t319537-text-file-edit-object.html)

Simon Burton 07-11-2003 06:49 AM

text file edit object
 

# Needed to edit a text file like a list:

file = TextFile( "foo.txt" )
del file[:-10] # remove last 10 lines
file.save()

# Ended up writing this:

#!/usr/bin/env python

from tempfile import mktemp
import shutil
import sys

class TextFile(list):
def __init__(self,name):
file = open( name )
self[:] = file.readlines()
self.name = name
def save(self):
temp = mktemp()
file = open( temp, "w" )
file.writelines( self )
file.close()
#tgt = "_"+self.name
tgt = self.name
#print temp, tgt
shutil.copy( temp, tgt )


# Is there Another Way?

# Simon Burton.



All times are GMT. The time now is 02:21 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57