您好我使用基本应用程序列出并访问特定文件夹中的图像。
它的作用:
从FolderChooser打开文件夹,而不是从那里获取所有图像文件名
CODE:
foreach (String path in System.IO.Directory.GetFiles(folderBrowserDialog1.SelectedPath))
{
System.Diagnostics.Debug.WriteLine(path);
}
在Windows文件资源管理器中我有这个列表:
000-01
000-02
000-03
...
000-09
000-10
000-11
...
当我打开文件夹并在VisualStudio输出列出文件时,它会显示以下结果:
..
000-10.jpg
000-100.jpg
000-101.jpg
000-102.jpg
..
000-11.jpg
000-110.jpg
000-111.jpg
为什么呢?好吧,我知道它因为数字顺序,但为什么Visual Studio它有错误的排序? (与Windows资源管理器不同)
如何修复VisualStudio订单?