Scripting.FileSystemObject Write 方法失败

发布于 2024-09-13 13:18:31 字数 820 浏览 5 评论 0原文

因此,在我的程序中,我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

菊凝晚露 2024-09-20 13:18:31

我今天使用 ADODB.Stream 而不是 Scripting.FileSystemObject 解决了同样的问题。

在 Silverlight 4 OOB 应用程序中(即使具有更高的信任度),您无法访问“MyDocuments”和其他几个与用户相关的特殊文件夹之外的位置中的文件。您必须使用解决方法“COM+自动化”。但是 Scripting.FileSystemObject 对于文本文件非常有效,但无法处理二进制文件。幸运的是,您还可以在那里使用 ADODB.Stream。这可以很好地处理二进制文件。这是我的代码,使用 Word 模板、.dotx 文件进行测试:

public static void WriteBinaryFile(string fileName, byte[] binary)
{
    const int adTypeBinary = 1;
    const int adSaveCreateOverWrite = 2;
    using (dynamic adoCom = AutomationFactory.CreateObject("ADODB.Stream"))
    {
        adoCom.Type = adTypeBinary;
        adoCom.Open();
        adoCom.Write(binary);
        adoCom.SaveToFile(fileName, adSaveCreateOverWrite);
    }
}

文件读取可以这样完成:

public static byte[] ReadBinaryFile(string fileName)
{
    const int adTypeBinary = 1;
    using (dynamic adoCom = AutomationFactory.CreateObject("ADODB.Stream"))
    {
        adoCom.Type = adTypeBinary;
        adoCom.Open();
        adoCom.LoadFromFile(fileName);
        return adoCom.Read();
    }
}

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:

public static void WriteBinaryFile(string fileName, byte[] binary)
{
    const int adTypeBinary = 1;
    const int adSaveCreateOverWrite = 2;
    using (dynamic adoCom = AutomationFactory.CreateObject("ADODB.Stream"))
    {
        adoCom.Type = adTypeBinary;
        adoCom.Open();
        adoCom.Write(binary);
        adoCom.SaveToFile(fileName, adSaveCreateOverWrite);
    }
}

A file read can be done like this:

public static byte[] ReadBinaryFile(string fileName)
{
    const int adTypeBinary = 1;
    using (dynamic adoCom = AutomationFactory.CreateObject("ADODB.Stream"))
    {
        adoCom.Type = adTypeBinary;
        adoCom.Open();
        adoCom.LoadFromFile(fileName);
        return adoCom.Read();
    }
}
ˇ宁静的妩媚 2024-09-20 13:18:31

为什么不只是:

File.WriteAllText("file.xml", theContent, Encoding.UTF8);

或者甚至

File.WriteAllBytes("file.xml", content);

Why not just:

File.WriteAllText("file.xml", theContent, Encoding.UTF8);

or even

File.WriteAllBytes("file.xml", content);
樱花细雨 2024-09-20 13:18:31

对于传递给 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.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文