如何将没有文件扩展名的所有文件放入数组中
如何将没有文件扩展名的所有文件放入数组中。我将提供文件夹路径。 使用 Directory.GetFiles() 或 DirectoryInfo.GetFiles() 可以吗?还有其他方法吗?
我正在使用 ASP.NET C#。
How can i get all files without file extension into an array. I will supply the folder path.
Is this possible using Directory.GetFiles() or DirectoryInfo.GetFiles()?? Is there any alternative way?
I am using ASP.NET C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜想:(
现已验证;效果很好) - 请注意,您可能需要使用 Server.MapPath 在相对站点路径和物理磁盘路径之间切换,并且 Directory 的结果.GetFiles 是完整路径。
I would guess:
(now verified; that works fine) - note that you may need to use
Server.MapPath
to switch between relative site paths and physical disk paths, and that the results ofDirectory.GetFiles
are full paths.如果您只需要获取文件夹中所有文件的名称部分(即使是带有扩展名的文件):
If you need to get just the name part of all files in a folder (even those with extensions):