C # - StreamReader SecurityException Обрабатывать ошибки, связанные с OpenFileDialog в приложении WinForms - PullRequest
0 голосов
/ 21 марта 2011

Привет всем, справочная информация: я разрабатываю приложение WinForms с использованием C # с OpenFileDialog, FileBrowserDialog, которое преобразует несколько файлов из Excel в 1 CSV-файл, используя исполняемый файл командной строки.

Ошибки: что, используя директивы или ссылки на сборки, я должен добавить, чтобы предотвратить эти ошибки ??

  • ' sOut ' не существует в текущем контексте
  • ' sErr ' не существует в текущем контексте
  • ' sourceFileOpenFileDialog.SelectedFiles ' не содержит определения для «SelectedFiles», и метод расширения, принимающий первый аргумент типа system.windows.forms.openfiledialog, не найден (если вы пропустили директиву usingили ссылка на сборку?)
  • ' sourceFileOpenFileDialog.SelectedPath ' не содержит определения для SelectedPath, и никакой метод расширения, принимающий первый аргумент типа system.windows.forms.openfiledialog, не может бытьнайдено (отсутствует директива об использовании или ссылка на сборку?)
  • ' SecurityException ' не может быть найдено (отсутствует директива об использовании или ссылка на сборку?)
  • ' Процесс ' не найден (вам не хватает директивы использования или ссылки на сборку?)
  • ' fileName ' не удалось найти (выотсутствует директива using или ссылка на сборку?)
  • ' sourceFileOpenFileDialog.FileNames ' не может неявно преобразовать тип 'string []' в 'string'

Спасибо!

Вот код из файла MainForm.CS:

    using System;
    using System.ComponentModel;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Threading;
    using System.IO;
    using System.Diagnostics;
    using System.Security;

    // Select Source Files Button 
    private void sourceFiles_Click(object sender, EventArgs e)
    {
        Stream myStream = null;
        OpenFileDialog openFileDialog1 = new OpenFileDialog();

        this.sourceFileOpenFileDialog.InitialDirectory = "i:\\CommissisionReconciliation\\Review\\";
        this.sourceFileOpenFileDialog.Filter = "Excel Files (*.xls;*.xlsx;)|*.xls;*.xlsx;|All Files (*.*)|*.*";
        this.sourceFileOpenFileDialog.FilterIndex = 2;
        this.sourceFileOpenFileDialog.RestoreDirectory = true;
        this.sourceFileOpenFileDialog.Multiselect = true;
        this.sourceFileOpenFileDialog.Title = "Excel File Browser";

        DialogResult dr = this.sourceFileOpenFileDialog.ShowDialog();
        if (dr == System.Windows.Forms.DialogResult.OK)
        {
            string consolidatedFolder = targetFolderBrowserDialog.SelectedPath; 
            // Read the files
            foreach (String file in sourceFileOpenFileDialog.FileNames)
            {
                try
                {
                    // Copy each selected xlsx files into the specified TargetFolder 

                    System.IO.File.Copy(fileName, consolidatedFolder + @"\" + System.IO.Path.GetFileName(fileName)); 

                    // Convert each selected XLSX File to CSV Using the command prompt
                    // [I:\CommissisionReconciliation\App\ConvertExcel\ConvertExcelTo.exe ^ .XLS file location ^ filename.csv] 
                    // example: ConvertExcelTo.exe ^ I:\CommissisionReconciliation\ Review\_Consolidated\ALH\2011-350-00-600070-
                    // 03-09alh-AMLHS of Florida.xlsx ^ 2011-350-00-600070-03-09alh-AMLHS of Florida.csv

                    Process convertFilesProcess = new Process();

                    // command prompt execution 
                    convertFilesProcess.StartInfo.WorkingDirectory = "I:\\CommissisionReconciliation\\App\\ConvertExcel\\";
                    convertFilesProcess.StartInfo.FileName = "ConvertExcelTo.exe";
                    convertFilesProcess.StartInfo.Arguments = " ^ " + targetFolderBrowserDialog.SelectedPath + "^" + csvFileName + ".csv";
                    convertFilesProcess.StartInfo.UseShellExecute = true;
                    convertFilesProcess.StartInfo.CreateNoWindow = true;
                    convertFilesProcess.StartInfo.RedirectStandardOutput = true;
                    convertFilesProcess.StartInfo.RedirectStandardError = true;
                    convertFilesProcess.Start();

                    StreamReader sOut = convertFilesProcess.StandardOutput;
                    StreamReader sErr = convertFilesProcess.StandardError;

                }

                catch (SecurityException ex)
                {
                    // The user lacks appropriate permissions to read files, discover paths, etc.
                    MessageBox.Show("Security error. The user lacks appropriate permissions to read files, discover paths, etc. Please contact your administrator for details.\n\n" +
                    "Error message: " + ex.Message + "\n\n" +);
                }
                catch (Exception ex)
                {
                    // Could not load the image - probably related to Windows file system permissions.
                    MessageBox.Show("Cannot display the image: " + file.Substring(file.LastIndexOf('\\'))
                     + ". You may not have permission to read the file, or " +
                     "it may be corrupt.\n\nReported error: " + ex.Message);
                }

                finally
                {
                    Stream sOut
                    .Close();
                    sErr.Close();
                }

                try
                {
                    // Combine all .csv files into 1 csv file using the command prompt
                    // [.csv File location: Copy *.csv ^ filename.csv]
                    // example: [.CSV I:\CommissisionReconciliation\ Review\_Consolidated\ALH\: Copy *.csv 
                    // ^2011-350-00-600070-03-09alh-AMLHS of Florida.csv)

                    Process consolidateFilesProcess = new Process();

                    // substring function to take off the extension from sourceFileOpenFileDialog.FileName
                    // int csvFileName.Length = sourceFileOpenFileDialog.FileName.Length - 3;  

                    consolidateFilesProcess.StartInfo.WorkingDirectory = "I:\\CommissisionReconciliation\\App\\ConvertExcel\\";
                    consolidateFilesProcess.StartInfo.FileName = "ConvertExcelTo.exe"; 
                    consolidateFilesProcess.StartInfo.Arguments = " .CSV " + " ^ " + targetFolderBrowserDialog.SelectedPath + ": Copy *.csv ^" + csvFileName+ ".csv";
                    consolidateFilesProcess.StartInfo.UseShellExecute = false;
                    consolidateFilesProcess.StartInfo.CreateNoWindow = true;
                    consolidateFilesProcess.StartInfo.RedirectStandardOutput = true;
                    consolidateFilesProcess.StartInfo.RedirectStandardError = true;
                    consolidateFilesProcess.Start();

                    StreamReader sOut = consolidateFilesProcess.StandardOutput;
                    StreamReader sErr = consolidateFilesProcess.StandardError;
                }

                catch (SecurityException ex)
                {
                    // The user lacks appropriate permissions to read files, discover paths, etc.
                    MessageBox.Show("Security error. The user lacks appropriate permissions to read files, discover paths, etc. Please contact your administrator for details.\n\n" +
                    "Error message: " + ex.Message + "\n\n" +);
                }
                catch (Exception ex)
                {
                    // Could not load the image - probably related to Windows file system permissions.
                    MessageBox.Show("Cannot display the image: " + file.Substring(file.LastIndexOf('\\'))
                     + ". You may not have permission to read the file, or " +
                     "it may be corrupt.\n\nReported error: " + ex.Message);
                }

                finally
                {
                    sOut.Close();
                    sErr.Close();
                }

            } // ends foreach (String file in openFileDialog1.FileNames)
        }  // ends if (dr == System.Windows.Forms.DialogResult.OK)


        if (sourceFileOpenFileDialog.ShowDialog() == DialogResult.OK)
        {
            try
            {
                if ((myStream = sourceFileOpenFileDialog.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        textBoxSourceFiles.Text = sourceFileOpenFileDialog.FileNames;
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
            }
        }

        if (sourceFileOpenFileDialog.ShowDialog() == DialogResult.OK)
        {
            Log("Source Files: " + sourceFileOpenFileDialog.SelectedFiles);
        }
        textBoxSourceFiles.Text = sourceFileOpenFileDialog.SelectedFiles;
    } // ends selectFilesButton_Click method 


    // Source Folder Path Click Button 

Ответы [ 2 ]

1 голос
/ 21 марта 2011

Чтобы решить вашу ошибку

sourceFileOpenFileDialog.FileNames не может неявно преобразовать тип 'string []' в 'string'

Вам нужно изменить этот раздел, вы пытаетесь вставить массив строк в строку (.Text)

using (myStream)
{
   // change FileNames to FileName
   textBoxSourceFiles.Text = sourceFileOpenFileDialog.FileName; 

}

Может быть, перебрать массив FileNames и объединить строки вместе, чтобы поместить в .Text?

Для проблем с ".SelectedFiles" и ".SelectedPath" это не свойства openFileDialog, поэтому он жалуется ..

Опять же, вы можете использовать «.FileNames», чтобы получить доступ к файлам, которые были выбраны в диалоговом окне (или «.FileName», если вы разрешаете только один выбор)

С помощью sOut и sErr вы устанавливаете их поздно в процессе и очищаете их в своем утверждении finally, что может произойти, если процесс бомбит перед тем, как вы доберетесь до ваш

StreamReader sOut = covertFilesProcess.StandardOutput;
StreamReader sErr = covertFilesProcess.StandardError;

строк, когда вы нажимаете «наконец», он не знает, что такое sOut и sErr для закрытия, поскольку они еще не были сделаны.

0 голосов
/ 21 марта 2011

Исправлены следующие ошибки:

  • ' SecurityException ' не может быть найден (отсутствует директива об использовании или ссылка на сборку?) Путем добавления

      using System.Security;
    
  • ' Процесс ' не может быть найден (отсутствует директива об использовании или ссылка на сборку?) Путем добавления:

      using System.Diagnostics; 
    
  • ' fileName ' не удалось найти (отсутствует директива об использовании или ссылка на сборку?) При изменении на sourceFileOpenFileDialog.FileName

      System.IO.File.Copy(sourceFileOpenFileDialog.FileName, consolidatedFolder + @"\" + System.IO.Path.GetFileName(sourceFileOpenFileDialog.FileName)); 
    
  • ' sourceFileOpenFileDialog.FileNames ' не может неявно преобразовать тип 'string []' в 'string' путем изменения на sourceFileOpenFileDialog.FileName

      textBoxSourceFiles.Text = sourceFileOpenFileDialog.FileName;
    
  • ' sOut ' & ' sErr ' не существует в текущем контексте, исправленном путем изменения положения операторов закрытия следующим образом. Я не уверен, портит ли это ловушку исключений или нет, но мы увидим:

      StreamReader sOut = consolidateFilesProcess.StandardOutput;
      StreamReader sErr = consolidateFilesProcess.StandardError;
      sOut.Close();
      sErr.Close();
    
  • ' sourceFileOpenFileDialog.SelectedFiles ' не содержит определения для «SelectedFiles», и метод расширения, принимающий первый аргумент типа system.windows.forms.openfiledialog, не найден (вы пропали без вести) директива об использовании или ссылка на сборку?). Исправлено путем изменения SelectedFiles на FileNames:

      // Text box value declarataions
      private void textBoxSourceFiles_TextChanged(object sender, EventArgs e)
      {
          sourceFileOpenFileDialog.FileName = textBoxSourceFiles.Text;
      }
    

'sourceFileOpenFileDialog.SelectedPath' не содержит определения для 'SelectedPath', и метод расширения, принимающий первый аргумент типа system.windows.forms.openfiledialog, не найден (вам не хватает директивы using или ссылки на сборку?). Исправлено путем изменения SelectedPath на FileName:

        if (sourceFileOpenFileDialog.ShowDialog() == DialogResult.OK)
        {
            try
            {
                if ((myStream = sourceFileOpenFileDialog.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        textBoxSourceFiles.Text = sourceFileOpenFileDialog.FileName;
                    }
                }
            }
...