如何:在 Visual Basic 中附加至文字檔
您可以使用 WriteAllText 方法來附加至文字檔,方法是指定將 append
參數設定為 True
。
附加至文字檔
使用
WriteAllText
方法,並指定要附加的目標檔案和字串以及將append
參數設定為True
。這個範例會將
"This is a test string."
字串寫入名為Testfile.txt
的檔案中。Dim inputString As String = "This is a test string." My.Computer.FileSystem.WriteAllText( "C://testfile.txt", inputString, True)
穩固程式設計
以下條件可能會造成例外狀況:
因下列其中一項原因而導致路徑無效:它是長度為零的字串、它只包含空白字元、它包含無效的字元,或其為裝置路徑 (開頭為 \\.\) (ArgumentException)。
路徑無效,因為它是
Nothing
(ArgumentNullException)。File
指向不存在的路徑 (FileNotFoundException 或 DirectoryNotFoundException)。檔案正由另一個處理序使用中,或發生 I/O 錯誤 (IOException)。
路徑超過系統定義的最大長度 (PathTooLongException)。
路徑中的檔案或目錄名稱含有冒號 (:),或者是無效的格式 (NotSupportedException)。
使用者缺乏必要的使用權限來檢視路徑 (SecurityException)。