| | |
merging two txt files into one txt file
Please support our VB.NET advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
![]() |
•
•
Join Date: Dec 2008
Posts: 2
Reputation:
Solved Threads: 0
VB.Net makes a task like that quite simple:
A little error checking may prevent hangups:
VB.NET Syntax (Toggle Plain Text)
Public Sub text_combine( _ ByVal path_to_read_file As String, _ ByVal path_to_append_file As String _ ) System.IO.File.AppendAllText( _ path_to_append_file, _ System.IO.File.ReadAllText(path_to_read_file) _ ) End Sub
VB.NET Syntax (Toggle Plain Text)
Public Function text_combine( _ ByVal path_to_read_file As String, _ ByVal path_to_append_file As String _ ) As Boolean If ( _ (IO.File.Exists(path_to_read_file)) _ And (IO.File.Exists(path_to_append_file)) _ ) Then Try System.IO.File.AppendAllText( _ path_to_append_file, _ System.IO.File.ReadAllText(path_to_read_file) _ ) text_combine = True Catch ex As Exception text_combine = False End Try Else text_combine = False End If End Function
![]() |
Similar Threads
- Getting size of all files in folder, and finding out some offsets.. (Python)
- merging two files and removing duplicates (Perl)
- Sorting (Java)
- Merging two files? (C)
- Sorting (Java)
- Win Min at turn off. (Viruses, Spyware and other Nasties)
Other Threads in the VB.NET Forum
- Previous Thread: combobox
- Next Thread: Listview Column data to XML file
| Thread Tools | Search this Thread |
.net .net2005 .net2008 30minutes 2005 2008 access account arithmetic array basic browser button buttons center check code component connectionstring crystalreport cuesent data database databasesearch datagrid datagridview date datetimepicker design dissertation dissertations dissertationthesis dissertationtopic dropdownlist excel fade file-dialog filter folder ftp generatetags hardcopy image images input insert intel monitor navigate net networking opacity output panel passingparameters peertopeervideostreaming picturebox picturebox1 port printing problem problemwithinstallation project reports" savedialog searchvb.net select settings shutdown string survey tcp temperature text textbox timer timespan toolbox transparency trim updown user usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb.nettoolboxvisualbasic2008sidebar vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf year





