我在Wince一个程序,我想通过一个程序实时监控该程序与服务器的版本对比,如果有新版本,就把指定的文件夹内的所有文件全部拷贝到我当前指定的文件夹下。
怎么获取文件版本进行对比,有exe和dll。在进行更新呢。
using System.Reflection; using System.Diagnostics; Assembly assembly = Assembly.GetExecutingAssembly(); FileVersionInfo fileVersionInfo = FileVersionInfo.GetVersionInfo(assembly.Location); string version = fileVersionInfo.ProductVersion;
wince6.0 里面没有 FileVersionInfo
@NET技术员: