关于c#:将文件的文件扩展名下载到Windows窗体上

Get File Extension of File Dropped Onto Windows Form

如何捕获掉到Windows窗体上的文件扩展名?例如(下面是伪代码)

1
2
3
if extension = .xlsx { method1 }
if extension = .txt { method2 }
else { MessageBox.Show("Please drag/drop either a .xlsx or a .txt file"); }


您必须记住,用户可以拖动多个文件。使用此代码作为起点。您要做的第一件事是修改DragCenter事件处理程序,这样用户就根本无法删除错误类型的文件:

1
2
3
4
5
6
7
8
9
10
11
12
    private void Form1_DragEnter(object sender, DragEventArgs e) {
        if (!e.Data.GetDataPresent(DataFormats.FileDrop)) return;
        string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
        foreach (var file in files) {
            var ext = System.IO.Path.GetExtension(file);
            if (ext.Equals(".xlsx", StringComparison.CurrentCultureIgnoreCase) ||
                ext.Equals(".txt",  StringComparison.CurrentCultureIgnoreCase)) {
                e.Effect = DragDropEffects.Copy;
                return;
            }
        }
    }

DragDrop事件处理程序与此基本相同,而不是指定处理文件的e.effect,无论您想如何处理它。