|
原帖由 netwinxp 于 2007-7-13 12:21 PM 发表
期待ing......==我再测试>4G有没问题,另外,WIMGAPI是否有往已存在的卷添加文件或子卷的功能?如果有可否建立一个root卷来存放根目录下的文件,单独的文件建议也放在这个卷,映射成驱动器时把root映射成根目录( ...
制作新卷和追加卷都是同一个函数WIMCaptureImage,它的第一个参数是文件句柄,第二个参数指向目录(而不是文件),第三个参数是旗标。
//////////////////////////////////////////////////
HANDLE
WINAPI
WIMCaptureImage(IN HANDLE hWim, IN LPWSTR lpszPath, IN DWORD dwCaptureFlags);
Parameters
hWim
[in] The handle to a .wim file returned by WIMCreateFile.
lpszPath
[in] A pointer to a null-terminated string containing the root drive or directory path from where the image data is captured. The specified path must not exceed MAX_PATH characters in length.
dwCaptureFlags
[in] Specifies the features to use during the capture.
FlagDescription WIM_FLAG_VERIFY
Capture verifies single-instance files byte by byte.
//////////////////////////////////////////////////
追加就是将一个源(目录)制成一个新的卷加入已存在的WIM映像中;
将一个WIM文件中已存在的卷“添加”到另一个WIM文件中,叫导出和导入,
从源导出,向目标导出。
[ 本帖最后由 lxl1638 于 2007-7-13 12:44 PM 编辑 ] |
|