dat文件用于在wince启动的时候,定义文件系统的结构,也就是定义有哪些文件夹,哪些文件在什么位置等。每次冷启动的时候,filesys模块会根据.dat文件中的内容来创建目录以及目录下的文件。
在bsp中我们可以找到platform.dat。在创建一个wince的工程以后,可以在工程目录下面找到project.dat。可以在这两个.dat文件中定义我们所需的根目录以及相应的子目录和文件,当然windows文件夹及其包含的子文件夹除外。用户可以通过定义快捷方式的方法来引用windows目录下的文件。
关于dat文件的具体格式,来举个例子:
root:-directory("my documents")
root:-directory("program files")
directory("program files"):-directory("my projects")
directory("program files"):-directory("accessories")
directory("program files"):-directory("communication")
directory("program filesmy projects"):-file("my project program", "windowsmyproj.exe")
root:-file("control.lnk", "windowscontrol.lnk")
简单解释一下,上面的内容是先创建my documents和program files两个根目录,然后在program files下面创建my projects,accessories和communication三个子目录,然后拷贝被定义在windows目录下的存在于rom中的myproj.exe文件到my projects目录下面,且名字为my project program。这里需要说明的一点就是,像myproj.exe这样的文件都是从rom中拷贝出来的,所以必须在bib文件中包含了该文件。最后一行意思是在根路径下创建control.lnk,该文件来自rom中的control.lnk文件,是一个快捷方式文件。
对上面的一些格式做个解释:
1.root directory的语法格式:
root:[-directory("dir_name")"> [-permdir("dir_name")">
[-file("target_filename", "source_location")">
root:表示根目录。
-directory(“dir_name”):定义根目录下的目录名。
-permdir(“dir_name”):定义一个永久的目录,用户是不能通过removedirectory函数删除的。
-file(" target_filename", " source_location"):定义一个目标文件,该文件从rom中拷贝过来。target_filename为目标文件的文件名,source_location为rom中的文件,指windows目录下的某路径下的文件名。
2.directory的语法格式:
directory("dir_name"):[-directory("dir_name")">
[-file("target_filename", "source_location")">
directory(“dir_name”):表示目录名。””表示根目录。
-directory(“dir_name”):表示目录下的路径,就是子目录。
-file(" target_filename", " source_location"):定义一个目标文件,该文件从rom中拷贝过来。target_filename为目标文件的文件名,source_location为rom中的文件,指windows目录下的某路径下的文件名。
dat中所使用的语法定义比较简单,看看例子就知道如何修改了,一般我们会通过修改project.dat和platform.dat来改变wince启动后的文件路径结构。其中platform.dat是和平台相关的,而project.dat是和wince工程相关的。
如果喜欢wince bsp中的dat文件介绍 - wince请收藏或告诉您的好朋友.