使用 HashTable 对文件组进行排序 - Visual Basic
如何使用哈希表按值对目录中的文件组进行排序?
我将拥有超过 500 个以下格式的文件:
prod_orders_XXX_<TimeStamp>.dat
XXX = 产品符号,长度可能会有所不同。
<时间戳> = 日期和时间
同一 XXX 的多个文件可能具有不同的时间戳。
以下是一些示例:
prod_orders_abc_20122001083000.dat
prod_orders_abc_20122001083111.dat
prod_orders_xyz_20122001093157.dat
prod_orders_xyz_20122001083000.dat
prod_orders_abc_20122001163139.dat
prod_orders_abc_20122001093137.dat
我之前发布过类似的问题,但这次我需要专门使用哈希表。有人可以帮忙吗?
how to sort the group of files in the directory using Hashtable by values?
i'll have more than 500 no of files in the below format:
prod_orders_XXX_<TimeStamp>.dat
XXX = symbol of the product and the length may varies.
<TimeStamp> = date and time
Multiple files for the same XXX are possible with different time stamps.
Here are some examples:
prod_orders_abc_20122001083000.dat
prod_orders_abc_20122001083111.dat
prod_orders_xyz_20122001093157.dat
prod_orders_xyz_20122001083000.dat
prod_orders_abc_20122001163139.dat
prod_orders_abc_20122001093137.dat
I have posted a similar question before but this time i need this specificly using Hashtable. Can someone help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你这里有四个问题。
You have four problems here.