mads3n Posted June 9, 2005 Posted June 9, 2005 I need a little help.. is there a code to delete the content of a .txt file?? plz....help me.. Mads3n.dk
vbMark Posted June 9, 2005 Posted June 9, 2005 I need a little help..is there a code to delete the content of a .txt file??plz....help me.. <{POST_SNAPBACK}>#include <file.au3> _FileCreate ( $sFilePath )
Groumphy Posted June 9, 2005 Posted June 9, 2005 Why not this : ; Function to empty a text file ; Author(s) : Groumphy ; Alias of FileOpen Mode 2 Func _EraseContentOfTxtFile($iFile) ; failure = -1 ; success = File is empty Return FileOpen($iFile, 2) FileClose($iFile) EndFunc _EraseContentOfTxtFile("test.txt") If @error Then MsgBox(0 + 64, "Info", "Error !", 10) Else MsgBox(0 + 64, "Info", "Success !", 10) EndIf ----------------------GroumphyMore information about me [Fr]
mads3n Posted June 9, 2005 Author Posted June 9, 2005 Why not this : ; Function to empty a text file ; Author(s) : Groumphy ; Alias of FileOpen Mode 2 Func _EraseContentOfTxtFile($iFile) ; failure = -1 ; success = File is empty Return FileOpen($iFile, 2) FileClose($iFile) EndFunc _EraseContentOfTxtFile("test.txt") If @error Then MsgBox(0 + 64, "Info", "Error !", 10) Else MsgBox(0 + 64, "Info", "Success !", 10) EndIf <{POST_SNAPBACK}>¨Thx.. Mads3n.dk
Valuater Posted June 9, 2005 Posted June 9, 2005 #include <file.au3> _FileCreate ( $sFilePath )<{POST_SNAPBACK}>I would use your idea... quick, clean, short, to the point and does exactly what he asked for8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now