Convert multiple HTML to RTF files in C# and .NET
Complete code
using System;
using System.IO;
using SautinSoft;
using static SautinSoft.HtmlToRtf;
namespace Sample
{
class Test
{
static void Main(string[] args)
{
// Get your free 100-day key here:
// https://sautinsoft.com/start-for-free/
// Convert multiple HTML to RTF files.
// If you need more information about "HTML to RTF .Net"
// Email us at: support@sautinsoft.com.
ConvertMultipleHtmlToRtf();
}
public static void ConvertMultipleHtmlToRtf()
{
SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();
HtmlConvertOptions opt = new HtmlConvertOptions();
opt.OutputFormat = HtmlToRtf.OutputFormat.Rtf;
string inpFolder = @"..\..\..\Testing HTMLs\";
string outFolder = new DirectoryInfo(Directory.GetCurrentDirectory()).CreateSubdirectory("RTF").FullName;
string[] inpFiles = Directory.GetFiles(inpFolder, "*.htm*");
int total = inpFiles.Length;
int currCount = 1;
int successCount = 0;
foreach (string inpFile in inpFiles)
{
string fileName = Path.GetFileName(inpFile);
Console.Write("{0:D2} of {1} ... {2}", currCount, total, fileName);
currCount++;
string outFile = Path.Combine(outFolder, Path.ChangeExtension(fileName, ".rtf"));
if (h.Convert(inpFile, outFile, opt))
{
successCount++;
Console.WriteLine(" Ok!");
}
else
{
Console.WriteLine(" Error!");
}
}
Console.WriteLine("{0} of {1} HTML(s) converted successfully!", successCount, total);
Console.WriteLine("Press any key ...");
Console.ReadKey();
// Open the result for demonstration purposes.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(outFolder) { UseShellExecute = true });
}
}
}
Imports System
Imports System.IO
Imports SautinSoft
Imports SautinSoft.HtmlToRtf
Namespace Sample
Friend Class Test
Shared Sub Main(ByVal args() As String)
' Get your free 100-day key here:
' https://sautinsoft.com/start-for-free/
' Convert multiple HTML to RTF files.
' If you need more information about "HTML to RTF .Net"
' Email us at: support@sautinsoft.com.
ConvertMultipleHtmlToRtf()
End Sub
Public Shared Sub ConvertMultipleHtmlToRtf()
Dim h As New SautinSoft.HtmlToRtf()
Dim opt As New HtmlConvertOptions()
opt.OutputFormat = HtmlToRtf.OutputFormat.Rtf
Dim inpFolder As String = "..\..\..\Testing HTMLs\"
Dim outFolder As String = (New DirectoryInfo(Directory.GetCurrentDirectory())).CreateSubdirectory("RTF").FullName
Dim inpFiles() As String = Directory.GetFiles(inpFolder, "*.htm*")
Dim total As Integer = inpFiles.Length
Dim currCount As Integer = 1
Dim successCount As Integer = 0
For Each inpFile As String In inpFiles
Dim fileName As String = Path.GetFileName(inpFile)
Console.Write("{0:D2} of {1} ... {2}", currCount, total, fileName)
currCount += 1
Dim outFile As String = Path.Combine(outFolder, Path.ChangeExtension(fileName, ".rtf"))
If h.Convert(inpFile, outFile, opt) Then
successCount += 1
Console.WriteLine(" Ok!")
Else
Console.WriteLine(" Error!")
End If
Next inpFile
Console.WriteLine("{0} of {1} HTML(s) converted successfully!", successCount, total)
Console.WriteLine("Press any key ...")
Console.ReadKey()
' Open the result for demonstration purposes.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(outFolder) With {.UseShellExecute = True})
End Sub
End Class
End Namespace
If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below: