stutch
stutch

Reputation: 33

iTextSharp System.IO.FileNotFoundException

I am getting a System.IO.FileNotFoundException on the release build of the below but not getting it while debugging.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using Microsoft.Office.Interop.Word;
using System.IO;
using iTextSharp.text.pdf;
using iTextSharp.text.pdf.parser;
using iTextSharp.text.xml;
using Microsoft.VisualBasic;

namespace CountingTool
{
    public partial class MainWindow : System.Windows.Window
    {
        private string SelectedFile;

        public MainWindow()
        {
            InitializeComponent();
        }        

        private void LoadFileButton_Click(object sender, System.EventArgs e)
        {
            OpenFileDialog LoadFileDialog = new OpenFileDialog();

            LoadFileDialog.Title = "Select file";
            LoadFileDialog.Filter = "PDF files|*.pdf";
            LoadFileDialog.InitialDirectory = @"C:\";

            if (LoadFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                try
                {
                    SelectedFile = LoadFileDialog.FileName;
                 }
                catch (Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
                }
            }
        }

        private void CountEach()
        {
            string FullPdf = ExtractFullPdf();
            ...
        }

        private string ExtractFullPdf()
        {
            PdfReader sourceDocument = new PdfReader(SelectedFile);
            StringBuilder text = new StringBuilder();

            for (int i = 1; i <= sourceDocument.NumberOfPages; i++)
            {
                text.Append(PdfTextExtractor.GetTextFromPage(sourceDocument, i));
            }

            sourceDocument.Close();
            return text.ToString();
        }
}

The line that seems to be causing the issue is PdfReader sourceDocument = new PdfReader(SelectedFile);.

Any thoughts would be greatly appreciated.

Thanks

Upvotes: 0

Views: 1127

Answers (2)

stutch
stutch

Reputation: 33

The issue here was that the itextsharp.dll needs to be in the same directory as the built .exe.

Upvotes: 1

Ousmane D.
Ousmane D.

Reputation: 56489

If you're completely sure that the path you've specified is correct even though that is probably unlikely then I can suggest you use either:

Request.PhysicalApplicationPath("enter path here");

Server.MapPath("enter path here");

Upvotes: 0

Related Questions