Scripting.FileSystemObject Write 方法失败
因此,在我的程序中,我使用 COM Auotmation(Silverlight 4 中的 AutomationFactory)来创建一个 FileSystemObject,我向其中写入一个字符串 (theContent)。本例中的内容是一个小的 UTF-8 XML 文件,我使用 MemoryStream 将其序列化为字符串。
该字符串很好,但由于某种原因,每当我调用 FileSystemObject 的 Write 方法时,我都会收到错误“HRESULT 0x800A0005(来自 google 的 CTL_E_ILLEGALFUNCTIONCALL)”。最奇怪的部分是,如果我传递另一个简单的字符串,例如“hello”,它就可以正常工作。
有什么想法吗?
或者,如果有一种方法可以使用 FileSystemObject 公开文件/文本流,我可以直接序列化它,那也很好(我似乎找不到任何不在 VB 中的东西)。
提前致谢!
string theContent = System.Text.Encoding.UTF8.GetString(content, 0, content.Length);
string hello = "hello";
using (dynamic fsoCom = AutomationFactory.CreateObject("Scripting.FileSystemObject"))
{
dynamic file = fsoCom.CreateTextFile("file.xml", true);
file.Write(theContent);
file.Write(hello);
file.Close();
}
So in my program I'm using COM Auotmation (AutomationFactory in Silverlight 4) to create a FileSystemObject, to which I write a string (theContent). theContent in this case is a small UTF-8 XML file, which I serialized using MemoryStream into the string.
The string is fine, but for some reason whenever I call the FileSystemObject's Write method I get the error "HRESULT 0x800A0005 (CTL_E_ILLEGALFUNCTIONCALL from google)." The strangest part is that if I pass another simple string, like "hello," it works with no problems.
Any ideas?
Alternatively, if there's a way to expose a file/text stream with FileSystemObject that I could serialize to directly, that would be good as well (I can't seem to find anything not in VB).
Thanks in advance!
string theContent = System.Text.Encoding.UTF8.GetString(content, 0, content.Length);
string hello = "hello";
using (dynamic fsoCom = AutomationFactory.CreateObject("Scripting.FileSystemObject"))
{
dynamic file = fsoCom.CreateTextFile("file.xml", true);
file.Write(theContent);
file.Write(hello);
file.Close();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我今天使用 ADODB.Stream 而不是 Scripting.FileSystemObject 解决了同样的问题。
在 Silverlight 4 OOB 应用程序中(即使具有更高的信任度),您无法访问“MyDocuments”和其他几个与用户相关的特殊文件夹之外的位置中的文件。您必须使用解决方法“COM+自动化”。但是 Scripting.FileSystemObject 对于文本文件非常有效,但无法处理二进制文件。幸运的是,您还可以在那里使用 ADODB.Stream。这可以很好地处理二进制文件。这是我的代码,使用 Word 模板、.dotx 文件进行测试:
文件读取可以这样完成:
I solved the same problem today using ADODB.Stream instead of Scripting.FileSystemObject.
In a Silverlight 4 OOB App (even with elevated trust), you cannot access files in locations outside of 'MyDocuments' and a couple of other user related special folders. You have to use the workaround 'COM+ Automation'. But the Scripting.FileSystemObject, which works great for text files, cannot handle binary files. Fortunately you can also use ADODB.Stream there. And that handles binary files just fine. Here is my code, tested with Word Templates, .dotx files:
A file read can be done like this:
为什么不只是:
或者甚至
Why not just:
or even
对于传递给 CreateTextFile() 方法的 Unicode 文本,Unicode 参数应更改为 True,否则您将得到 CTL_E_ILLEGALFUNCTIONCALL。这解决了我的问题。
For Unicode text that passed into CreateTextFile() method the parameter of Unicode should change to True, otherwise you will get CTL_E_ILLEGALFUNCTIONCALL. This solved my problem.