3

XML ファイルと CGM グラフィックス ファイルを Open File ブラウザからアプリケーションにロードする C# Windows フォーム アプリケーションがあります。一度に数百を選択できるようで、問題なく動作しますが、それ以上、ダイアログボックスがポップアップして、そのようなファイルが見つからないというメッセージが表示されますが、ファイル名の半分しか表示されません。これは、ファイルを開くダイアログで一度に選択/処理できるファイルの量に制限があるためだと思います。

一度に選択できる制限を超えている場合、その数を回避する方法はありますか?

ファイルをアプリケーションに効果的に「インポート」しています。これにより、foreach ループを使用して、選択したファイルが別のフォルダーに移動され、アプリケーションは、インポートされたファイルのすべてのファイル名 (および他のデータ) を含む XML ファイルに書き込みます。ファイルで)。

以下は「インポート」メソッド全体です

private void addFilesToCSDBToolStripMenuItem_Click(object sender, EventArgs e)
{
    int DMsimported = 0;
    int graphicsImported = 0;

    if (projectName == "")
    {
        MessageBox.Show("Please open a project first", "DAWS");
        return;
    }

    DialogResult result = openFileDialog1.ShowDialog();
    if (result == DialogResult.OK)
    {
        MessageBox.Show("This process may take several minutes depending on the number of imports", "DAWS");
        Application.UseWaitCursor = true;

        foreach (string file in openFileDialog1.FileNames)
        {
            string fileName = Path.GetFileNameWithoutExtension(file); //Gets just the name from the file path
            string ext = Path.GetExtension(file.ToLower());

            if (ext != ".CGM" && ext != ".cgm")
            {
                    bool exists = xmlFileWriter.checkIfFIleExists(fileName + ext);

                    if (exists != true)
                    {
                        xmlFileWriter.writeDatatoXML(file);
                        File.Move(file, CSDBpath + projectName + "\\CheckedIN\\" + fileName + ext);
                        DMsimported = DMsimported + 1;
                    }
                    else
                    {
                        MessageBox.Show(fileName + " already exists in the CSDB. This file will be skipped.", "DAWS");
                    }  
                }
            else
            {
                if (File.Exists(CSDBpath + projectName + "\\Graphics\\" + fileName + ext))
                {
                    if (Properties.Settings.Default.OverwriteGraphics == true)
                    {
                        File.SetAttributes(CSDBpath + projectName + "\\Graphics\\" + fileName + ext, FileAttributes.Normal); // need this line in order to set the file attributes. Exception thrown otherwise when system tries to overwrite the file.
                        File.Delete(CSDBpath + projectName + "\\Graphics\\" + fileName + ext);
                        File.Copy(file, CSDBpath + projectName + "\\Graphics\\" + fileName  + ext); //need to give the option as to whether to delete the existing file or skipp.
                    }
                    else
                    {
                        MessageBox.Show(fileName + " already exists in the CSDB. This file will be skipped. To enable overwriting tick the checkbox in Preferences", "DAWS");
                    }
                }
                else
                {
                    File.Copy(file, CSDBpath + projectName + "\\Graphics\\" + fileName + ext);
                }

                graphicsImported = graphicsImported + 1;                            
            }   
        }

        Application.UseWaitCursor = false;

        buildAllListViews();
        copyCGMfilesToDirectories();

        if (DMsimported > 0)
        {
            MessageBox.Show(DMsimported.ToString() + " DM files successfully imported into the CSDB", "DAWS");
        }
        if (graphicsImported > 0)
        {
            MessageBox.Show(graphicsImported.ToString() + " graphic files successfully imported into the CSDB", "DAWS");
        }
        if (graphicsImported == 0 && DMsimported == 0)
        {
            MessageBox.Show("No files imported", "DAWS");
        }

        updateMainFilesList();  
    }  
}
4

4 に答える 4

3

.NET 4.5 でテストしたところ、5000 個のファイルで問題はなかったので、.net フレームワーク/OS のバージョンに依存しているように見えます (古いウィンドウに依存しないように、十分な長さのファイル名を使用しました)。すべてのファイル名の最大長が 65536 または 32768 のような制約):

var directory = @"c:\test\test";
Directory.CreateDirectory(directory);

for (int i = 0; i < 5000; i++)
{
    var path = Path.Combine(directory, i.ToString() + new string('a', 200));
    File.WriteAllText(path, "");
}

if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    var fileCount = openFileDialog1.FileNames;
    var lastFileName = openFileDialog1.FileNames[4999];
}
于 2013-05-31T08:54:00.603 に答える
3

この記事によると、コントロールを使用して複数のファイルを選択すると、" Too many files selected" エラー メッセージが表示されます。OpenFileDialog200

于 2013-05-31T08:47:37.813 に答える
1

.NET Framework 1.1 では、OpenFileDialog.Multiselect プロパティの場合:

[ファイルを開く] ダイアログ ボックスで開くことができる 200 個のファイルのハードコーディングされた制限があります。この制限の詳細については、 http://support.microsoft.comのマイクロソフト サポート技術情報の記事 820631「PRB: OpenFileDialog コントロールを使用すると、'Too Many Files Selected' エラー メッセージが表示される」を参照してください。

このような多数のファイルを操作する必要がある場合は、フォルダーのみを選択する方が理にかなっている可能性があります (この場合、フォルダー内のすべてのファイルを選択するとさらに合理的です)。FolderBrowserDialog Classを使用してみてください:

var folderBrowserDialog = new FolderBrowserDialog();
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
{
    var fi = new DirectoryInfo(folderBrowserDialog.SelectedPath);
    // here you get the files collection
    var files = fi.GetFiles();
}
于 2013-05-31T08:50:17.127 に答える
0

試す:

   if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    openFileDialog1.Multiselect = false;
    var fileCount = openFileDialog1.FileNames;
    var lastFileName = openFileDialog1.FileNames[4999];
} 
于 2013-05-31T09:27:06.500 に答える