Program,Life,Society.....

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

    在网上看到一个存储或者添加text到文件的方法,感觉挺好,给大家分享!^_^ 
     
    原文@DevX.com

   
' Saves a text file. If the destination file already exists,

    ' its content can be replaced, or the new content can be appended

    ' at the end of the file, according to the last parameter

 

    ' Note: the destination directory must exist, otherwise the file is not

    '       saved and the function returns False

    ' Usage: Dim Result As Boolean = SaveTextFile("D:\Test.txt", FileContent)

 

    Function SaveTextFile(ByVal FilePath As String, ByVal FileContent As String, _

        Optional ByVal Append As Boolean = False) As Boolean

 

        Dim sw As System.IO.StreamWriter

        Try

            sw = New System.IO.StreamWriter(FilePath, Append)

            sw.Write(FileContent)

            Return True

        Catch e As Exception

            Return False

        Finally

            If Not sw Is Nothing Then sw.Close()

        End Try

    End Function

posted on 2005-02-15 11:40  vuejs3  阅读(1518)  评论(5编辑  收藏  举报