我可以使用WinCE 5.0从其他存储中读取数据吗?

时间:2012-04-16 05:40:07

标签: c# windows-mobile windows-ce .net-1.1

我正在使用wince 5.0 for logicpd pxa270 som card和dotnet 1.1 sp1。当图像文件(NK.bin)形成并烧毁到设备时,它与SOM卡的内置存储器一起工作正常。假设我在闪存中有一些数据并使用设备中的应用程序,我想读取这些数据。我该怎么办?我需要使用什么API?我是否需要在OS目录视图中进行一些更改?

1 个答案:

答案 0 :(得分:0)

好的,我得到了答案。以下代码段工作正常。假设您正在使用移动设备和SOM卡的内存。如果设备的外部闪存中有文件且文件位于名为“myFolder”的文件夹中,则以下代码段将返回'\ myFolder'

    public static string GetStorageCard()
    {
        //initialize the path as an empty string
        string firstCard = "";

        System.IO.DirectoryInfo di = new System.IO.DirectoryInfo("\\");
        System.IO.FileSystemInfo[] fsi = di.GetFileSystemInfos();

        //iterate through them
        for (int x = 0; x < fsi.Length; x++)
        {
            //check to see if this is a temporary storage card (e.g. SD card)
            if ((fsi[x].Attributes & System.IO.FileAttributes.Temporary) == System.IO.FileAttributes.Temporary)
            {
                //if so, return the path
                firstCard = fsi[x].FullName;
            }
        }

        return firstCard;
    }