4744|15

75

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

ActiveSync 编程 谁搞过?读写设备里的文件 [复制链接]

如题
麻烦给个DEMO
谢谢!

最新回复

学习了,谢谢了。  详情 回复 发表于 2008-11-5 14:44
点赞 关注

回复
举报

56

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
用RAPI
 
 

回复

73

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
嗯,用RAPI

今天早上开始研究这个,刚搞了个DEMO出来,可以连接和传输单个文件。
 
 
 

回复

84

帖子

0

TA的资源

一粒金砂(初级)

4
 
引用 2 楼 91program 的回复:
嗯,用RAPI
  
今天早上开始研究这个,刚搞了个DEMO出来,可以连接和传输单个文件。

有RAPI的资料吗?
哪里可以下到
 
 
 

回复

58

帖子

0

TA的资源

一粒金砂(初级)

5
 
CeWriteFile(),CeReadFile()就可以。
在使用RAPI之前,要做初始化CeRapiInit。
 
 
 

回复

75

帖子

0

TA的资源

一粒金砂(初级)

6
 
最好不要用CeRapiInit(),因为用它如果没有连接设备有出问题
 
 
 

回复

65

帖子

0

TA的资源

一粒金砂(初级)

7
 
引用 5 楼 91program 的回复:
最好不要用CeRapiInit(),因为用它如果没有连接设备有出问题


应该还好吧,要看怎么用。
主线程中直接调用该函数是有问题,
单独开一个线程用它做连接检测,还是可以的。
 
 
 

回复

79

帖子

0

TA的资源

一粒金砂(初级)

8
 
DEMO?
你装一个MB6。0的SDK开发包就有这方面的参考例子了。


C:\Program Files\Windows Mobile 6 SDK\Samples\Common\CPP\Win32\Rapi\Pget



This code sample is named Pget. It demonstrates how to programmatically copy a file from a mobile device to a desktop computer using the Remote API (RAPI) interface.

 
 
 

回复

90

帖子

0

TA的资源

一粒金砂(初级)

9
 
http://blog.eeworld.net/91program/archive/2008/10/28/3167045.aspx

我刚贴出来的,今天学习RAPI的代码。
关于建立PC与设备连接 和 从PC上传输文件到设备 两个功能。
 
 
 

回复

77

帖子

0

TA的资源

一粒金砂(初级)

10
 
我今天也在弄这个, 今天弄好了PC与设备间的相互传文件, 还想弄个相互传目录的,估计明天可以弄好,
呵呵,楼主,一起学习.
 
 
 

回复

73

帖子

0

TA的资源

一粒金砂(初级)

11
 
我今天也在弄这个, 今天弄好了PC与设备间的相互传文件, 还想弄个相互传目录的,估计明天可以弄好,
呵呵,楼主,一起学习.
 
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

12
 
我用OpenNETCF.Desktop.Communication.dll搞的
 
 
 

回复

73

帖子

0

TA的资源

一粒金砂(初级)

13
 
mark
 
 
 

回复

77

帖子

0

TA的资源

一粒金砂(初级)

14
 
#include
#include
#include
#include
#include


#define ARRAYSIZE(x) (sizeof(x)/sizeof(x[0]))

void PrintDirectory(LPWSTR cePath, LPWSTR pcPath ,UINT Indent)
{
    DWORD          foundCount;
    LPCE_FIND_DATA findDataArray;
    HRESULT        hr;

//        FILE *stream, *stream2;

    WCHAR searchPath[MAX_PATH];

    hr = StringCchCopyW(searchPath, ARRAYSIZE(searchPath), cePath);
    if(FAILED(hr))
    {
        return;
    }
    hr = StringCchCatW(searchPath, ARRAYSIZE(searchPath), L"*");
    if(FAILED(hr))
    {
        return;
    }

    if(!CeFindAllFiles(searchPath,
                        FAF_ATTRIBUTES | FAF_NAME,
                        &foundCount,
                        &findDataArray))
    {
        _tprintf( TEXT("*** CeFindAllFiles failed. ***\n"));
        return;
    }

    if(!foundCount)
        return;

    for(UINT i = 0; i < foundCount; i++)
    {
        for(UINT indCount = 0; indCount < Indent; indCount++)
            _tprintf( TEXT("  "));

        if(findDataArray.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
        {
            _tprintf( TEXT("[%s]\n"),findDataArray.cFileName);
                        //CePath
            WCHAR newcePath[MAX_PATH];
            hr = StringCchCopyW(newcePath, ARRAYSIZE(newcePath), cePath);
            if(FAILED(hr))
            {
                return;            
            }
            hr = StringCchCatW(newcePath, ARRAYSIZE(newcePath), findDataArray.cFileName);
            if(FAILED(hr))
            {
                return;
            }            
            hr = StringCchCatW(newcePath, ARRAYSIZE(newcePath), L"\\");
            if(FAILED(hr))
            {
                return;
            }



                        //PcPath
                        WCHAR newpcPath[MAX_PATH];
                        hr = StringCchCopyW(newpcPath, ARRAYSIZE(newpcPath), pcPath);
                        if(FAILED(hr))
                        {
                                return;            
                        }
                        hr = StringCchCatW(newpcPath, ARRAYSIZE(newpcPath), findDataArray.cFileName);
                        if(FAILED(hr))
                        {
                                return;
                        }            


                       
                        if(!CreateDirectoryW(newpcPath,NULL))
                        {

                                _tprintf( TEXT("创建目录失败"));
                                return;
                        }
                        hr = StringCchCatW(newpcPath, ARRAYSIZE(newpcPath), L"\\");
                        if(FAILED(hr))
                        {
                                return;
                        }
            PrintDirectory(newcePath, newpcPath,Indent + 1);
        }
        else
        {
            _tprintf( TEXT("%s\n"),findDataArray.cFileName);

                        HANDLE remoteFile;
                        byte buffer[0x5000];                         // 传输缓冲区定义为4k


                        //得到CE文件全名(包括路径)
                        WCHAR cePathFileName[MAX_PATH];
                        hr = StringCchCopyW(cePathFileName, ARRAYSIZE(cePathFileName),cePath);
                        hr = StringCchCatW(cePathFileName, ARRAYSIZE(cePathFileName), findDataArray.cFileName);

                        //得到PC文件全名(包括路径)
                        WCHAR pcPathFileName[MAX_PATH];
                        hr = StringCchCopyW(pcPathFileName, ARRAYSIZE(pcPathFileName), pcPath);
                        hr = StringCchCatW(pcPathFileName, ARRAYSIZE(pcPathFileName), findDataArray.cFileName);

                        remoteFile = CeCreateFile(cePathFileName, GENERIC_READ, 0, 0, OPEN_EXISTING,
                                FILE_ATTRIBUTE_NORMAL, 0);

                        // 读取4K字节
                        DWORD          bytesread;
                        DWORD size = CeGetFileSize(remoteFile,&bytesread);
                        long iresult = CeReadFile(remoteFile, buffer, size, &bytesread, 0);
                        //   检查文件是否读取成功
                        if (remoteFile == INVALID_HANDLE_VALUE)
                        {
                                _tprintf(_T("Could   not   read   remote   file "));
                        }

                        HANDLE hFile = CreateFile(pcPathFileName,GENERIC_READ|GENERIC_WRITE,FILE_SHARE_READ| FILE_SHARE_WRITE,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL);
                        if(hFile == NULL || !CloseHandle(hFile))
                               
                        {
                                _tprintf(_T("Could   not   Creat  file "));

                        }

                        FILE *pf;
                        pf = _wfopen(pcPathFileName,L"w+b");
                        size_t xx = fwrite(buffer,sizeof( byte ),size,pf);
                        fclose(pf);                       
                        //   关闭远程文件
                        CeCloseHandle(remoteFile);
        }
    }

    if (findDataArray)
    {
        RapiFreeBuffer(findDataArray);
    }
}

void main()
{
    HRESULT hRapiResult;

    _tprintf( TEXT("Connecting to Windows CE..."));
   
    hRapiResult = CeRapiInit();

    if (FAILED(hRapiResult))
    {
        _tprintf( TEXT("Failed\n"));
        return;
    }

    _tprintf( TEXT("Success\n"));

//        PrintDirectory( L"\\Temp\\", L"c:\\",0);

    CeRapiUninit();
}

以上是用RAPI类库实现的设备到PC的目录复制,在VS2005上编译通过.如有疑问发MAIL:baishaf@163.com
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(初级)

15
 
DING
 
 
 

回复

84

帖子

0

TA的资源

一粒金砂(初级)

16
 
学习了,谢谢了。
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表