hi,
What is the Activesync API's to copy file from PC application to device application and how to use that ?
any sample code in C# language will be helpfull.
Hi,
You can also find more details in the following thread which covers both native and managed development options http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1505888&SiteID=1
Here is a small example of using this library to get you started
Code Snippet using OpenNETCF.Desktop.Communication; using (RAPI rapi = new RAPI()) { rapi.Connect(true); rapi.CopyFileFromDevice(@"C:\test.txt", @"\\test.txt"); rapi.Disconnect(); }
using OpenNETCF.Desktop.Communication;
using (RAPI rapi = new RAPI())
{
rapi.Connect(true);
rapi.CopyFileFromDevice(@"C:\test.txt", @"\\test.txt");
rapi.Disconnect();
}
using
File