我正在编写使用IMAPI(C#.NET)编写媒体(CD / DVD)的代码。 写作很好。 如果我尝试添加超过媒体上的可用空间的文件,它会抛出异常。 我可以捕获异常,但它不符合我的目的。 我想添加文件,即使它超过了可用空间。 然后,我想将图像的总大小返回给用户,然后用户将根据需要执行需要(更新UI,显示消息,在UI上显示图像大小等)。 换句话说,我想获得总图像大小,即使它超过了可用空间。 我可以看到很多媒体刻录应用程序正在这样做;所以这一定是可能的。
代码中的以下行抛出异常: -
fileSystemImage.Root.AddFile(thisFileItem.DestPath + thisFileItem.DisplayName, stream);
以下是例外情况: -
收到COMException
ErrorCode:-1062555360
消息:添加' myfilename'会导致结果图像的大小大于当前配置的限制。
以下是我的代码: -
MsftDiscFormat2Data discFormatData = null;
MsftDiscRecorder2 discRecorder = null;
MsftFileSystemImage fileSystemImage = null;
discRecorder = new MsftDiscRecorder2();
discRecorder.InitializeDiscRecorder(UniqueRecorderId);
discFormatData = new MsftDiscFormat2Data
{
Recorder = discRecorder,
ClientName = CLIENT_NAME,
ForceMediaToBeClosed = _closeSession
};
fileSystemImage = new MsftFileSystemImage();
fileSystemImage.VolumeName = _volumeID;
fileSystemImage.Update += fileSystemImage_Update;
fileSystemImage.ChooseImageDefaults(discRecorder);
fileSystemImage.FileSystemsToCreate = FsiFileSystems.FsiFileSystemJoliet | FsiFileSystems.FsiFileSystemISO9660 | FsiFileSystems.FsiFileSystemUDF;
if(!discFormatData.MediaHeuristicallyBlank)
{
fileSystemImage.MultisessionInterfaces = discFormatData.MultisessionInterfaces;
fileSystemImage.ImportFileSystem();
}
foreach(FileItem thisFileItem in listFileItem)
{
IStream stream = null;
if(thisFileItem.SourcePath != null)
Win32.SHCreateStreamOnFile(thisFileItem.SourcePath, Win32.STGM_READ | Win32.STGM_SHARE_DENY_WRITE, ref stream);
fileSystemImage.Root.AddFile(thisFileItem.DestPath + thisFileItem.DisplayName, stream);
}
IFileSystemImageResult objIFileSystemImageResult;
objIFileSystemImageResult = fileSystemImage.CreateResultImage();
_imageSize = (objIFileSystemImageResult.TotalBlocks * objIFileSystemImageResult.BlockSize);
IStream imageStream = objIFileSystemImageResult.ImageStream;
fileSystemImage.Update -= fileSystemImage_Update;
答案 0 :(得分:1)
不是解决方案,但我得到了黑客。
fileSystemImage.FreeMediaBlocks = int.MaxValue;
这将允许创建任何大小的图像(达到整数限制),而不管插入的媒体上是否有空闲块。然后,您可以按自己的方式实施验证。