|
分類:[.NET 全般]
お世話になります。 ファイルをコピーしようと思っています。
Dim sr As StreamReader = New StreamReader(Folder, System.Text.Encoding.Default) Dim line As String
If sr.Peek <= -1 Then sr.Close() Return End If Do line = sr.ReadLine() If line Is Nothing Then GoTo endloop Else Dim n As Integer = FreeFile() FileOpen(n, strMoveFolder, OpenMode.Append) WriteLine(n, line) FileClose(n) End If Loop Until line Is Nothing
ですが、”WriteLine(n, line)”で書かれた文字列にはダブルクォーテーションが付加されています。 ダブルクォーテーション付加せずに書くのはどうすればいいでしょうか? よろしくお願いします。
|