PD4ML pd4ml = new PD4ML();
pd4ml.enableTableBreaks(true);
pd4ml.PageInsets = new System.Drawing.Rectangle(5, 5, 5, 5);
pd4ml.PageSize = PD4Constants.getSizeByName("LETTER");
Byte[] byteArray = Encoding.ASCII.GetBytes(content);
MemoryStream stream = new MemoryStream(byteArray);
FinalPath = FinalPath + @"\" + VersionID;
if (!Directory.Exists(FinalPath))
Directory.CreateDirectory(FinalPath);
string FileName = FinalPath +FileName+ ".pdf";
pd4ml.render(stream,new System.IO.FileStream(FileName, System.IO.FileMode.CreateNew));
stream.Flush();
stream.Close();
stream.Dispose();
//In another method I'm opening this file
File stream fs = File.Open(path, FileMode.Open, FileAccess.Read);`
pd4ml.render() メソッドを使用して PDF を生成しています。render メソッドを使用してこのファイルを作成すると、内部的にシステムのどこかで開かれます。そのため、 Filestream fs=new Filestream(path,FileMode.Open,FileAccess.Read) を使用して手動で開こうとしたとき
それがスローされ、ファイルの例外が別のプロセスによって使用されています。何をすべきか教えてください。
私はすでに FileShare.ReadWrite 属性と File.OpenRead(path) をコードで使用していますが、うまくいきません。