紧凑的框架 - 无法读取目录内容 - winioerror

时间:2011-07-04 09:50:51

标签: .net-3.5 compact-framework windows-ce

我在现场有许多Windows CE 5设备,运行我们的软件。

他们的部分职责是压缩一些目录,然后发送到服务器。

在大约3个(几百个)设备中,我在尝试压缩目录时始终遇到此错误。压缩过程涉及到每个子目录下降并添加文件。

System.IO.IOException: IOException
   at System.IO.__Error.WinIOError(Int32 errorCode, String str)
   at System.IO.Directory.InternalGetFileDirectoryNames(String fullPath, Boolean file)
   at System.IO.Directory.InternalGetDirectories(String path, String searchPattern)
   at System.IO.Directory.GetDirectories(String path, String searchPattern)

每次在此设备上都会发生这种情况 - 不是随机的。

将目录内容复制到我的开发设备,并运行相同的(在相同的目录内容上)不会导致错误。我没有实际的设备来交互式调试。

当然,这个WinIOError在确定实际原因方面不是很有用。任何人都可以给我任何暗示,当只是试图阅读目录内容时,什么可能导致CF失败如此惊人?

正如您在下面所看到的,不再存在的常见内容由特定的异常处理 - 而不是通用的WinIOError。

非常感谢任何线索。

以下是反汇编函数:

// System.IO.Directory
    internal static string[] InternalGetFileDirectoryNames(string fullPath, bool file)
    {
      char c = fullPath[fullPath.Length - 1];
      if (c == Path.DirectorySeparatorChar || c == Path.AltDirectorySeparatorChar || c == Path.VolumeSeparatorChar)
      {
        fullPath += '*';
      }
      string[] array = new string[10];
      int num = 0;
      HostNative.FIND_DATA fIND_DATA = new HostNative.FIND_DATA();
      if (!Directory.Exists(Path.GetDirectoryName(fullPath)))
      {
        throw new DirectoryNotFoundException();
      }
      int handle;
      int num2 = PAL.File_OpenAndReadDir(fullPath, out handle, fIND_DATA);
      if (num2 != 0)
      {
        if (num2 == -2147479552 || num2 == -2147479545)
        {
          return new string[0];
        }
        __Error.WinIOError(num2, Path.GetDirectoryName(fullPath));
      }
      int num3 = 0;
      do
      {
        bool flag;
        if (file)
        {
          flag = (0 == (fIND_DATA.dwFileAttributes & 16));
        }
        else
        {
          flag = (0 != (fIND_DATA.dwFileAttributes & 16));
          if (flag && (fIND_DATA.cFileName.Equals(".") || fIND_DATA.cFileName.Equals("..")))
          {
            flag = false;
          }
        }
        if (flag)
        {
          num3++;
          if (num == array.Length)
          {
            string[] array2 = new string[array.Length * 2];
            Array.Copy(array, 0, array2, 0, num);
            array = array2;
          }
          array[num++] = fIND_DATA.cFileName;
        }
        num2 = PAL.File_ReadDir(handle, fIND_DATA);
      }
      while (num2 == 0);
      PAL.File_CloseDir(handle);
      if (num2 != 0 && num2 != -2147479545)
      {
        __Error.WinIOError(num2, Path.GetDirectoryName(fullPath));
      }
      if (!file && num3 == 1 && (fIND_DATA.dwFileAttributes & 16) != 0)
      {
        return new string[]
        {
          fIND_DATA.cFileName
        };
      }
      if (num == array.Length)
      {
        return array;
      }
      string[] array3 = new string[num];
      Array.Copy(array, 0, array3, 0, num);
      return array3;
    }

1 个答案:

答案 0 :(得分:0)

物理损坏的存储介质可能会导致此问题。低质量的SD卡,任何机会?