如何从 C# 检索/获取 CAB FileUnique 版本号?
我在Windows Mobile 6中有一个应用程序。部署该应用程序后,它将创建一个CAB文件。 我想使用 Asp.Net Web 表单中的文件上传控件将此 CAB 文件上传到服务器。
上传时,我想通过检查其版本号[部署时由 .NET 生成的唯一]来检查 CAB 文件是否已上传。只是它的名字。
如何从 C# 获得这个独特的版本???
请帮助我......提前
致谢
I have an application in windows mobile 6.after deploying the application,it will create a CAB file.
I Want to Upload this CAB file To Server using File Upload Control From Asp.Net Web Form..
While Uploading I want to check the CAB file is already Uploaded Before by checking its version number[Unique Generated by .NET while Deploying] rather than Just its name.
How to get this unique version from C# ???
Please help me on this.....
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接使用文件本身的 MD5 哈希值呢?这会给你带来非常好的独特性。
Why not just use an MD5 hash of the file itself? That's going to give you a pretty good uniqueness.