Feedback

C# - Beliebige Dateien drucken

Veröffentlicht von am 1/15/2009
(2 Bewertungen)
Mit diesem Snippet kann man beliebige Dateien drucken.

BSP: PrintFile("D:\\Test\\Test.pdf");
/// <summary>
/// Prints the file.
/// </summary>
/// <param name="fullPath">The full path.</param>
private static void PrintFile(string fullPath)
{
    FileInfo fileInfo = new FileInfo(fullPath);

    if(!fileInfo.Exists)
    {
        throw new FileNotFoundException();
    }

    var printProcess = new Process();
    printProcess.StartInfo.FileName = fullPath;
    printProcess.StartInfo.UseShellExecute = true;
    printProcess.StartInfo.Verb = "print";
    printProcess.Start();
}
Abgelegt unter drucken, Drucker.

3 Kommentare zum Snippet

Rüdiger Vossel schrieb am 1/16/2009:
Unschöner Nebeneffekt ist allerdings, dass beim Drucken von PFDs der AcrobatReader nach dem Druck geöffnet bleibt ....
Henry_L schrieb am 1/22/2010:
Gibt es eine Möglichkeit hier auch den Namen eines Druckers anzugeben?
Konstantin Gross schrieb am 1/22/2010:
Schau mal, vielleicht hilft dir das ja:
http://ss64.com/nt/print.html
 

Logge dich ein, um hier zu kommentieren!