#如何让Skype拨打指定的号码?
答:可以通过在命令行下启动带参数的新进程,使其Skype拨打参数中指定的号码
命令行格式:skype.exe /callto:+8613718139281
#如何获取skype.exe的安装路径?
答:
注册表在当前用户中取Software\Skype\Phone下的SkypePath
代码示例:
RegistryKey curUser = null;
RegistryKey skKey = null;
string skypePath = null;
try
{
curUser = Registry.CurrentUser;
skKey = curUser.OpenSubKey("Software\\Skype\\Phone");
skypePath = (string)skKey.GetValue("SkypePath", null);
}
finally
{
if (skKey != null)
{
skKey.Close();
}
if (skKey != null)
{
curUser.Close();
}
}
Console.WriteLine(skypePath);
#Skype获取某个用户的信息
答:代码示例
Skype s = new Skype()
User usr = s.get_User("+861311234567");
#如何查看Skype中的分组
答:
Skype s = new Skype();
foreach (Group item in s.Groups)
{
Console.WriteLine(item.DisplayName);
}
#如何创建分组
答:
Skype s = new Skype();
s.CreateGroup("NewGroupName");
#如何添加联系人
答:
Skype s = new Skype();
//联系人需要添加到分组中
string groupName = "test";//分组名
Group group = null;//分组
foreach (Group item in s.Groups)
{
if (item.DisplayName==groupName)
{
group = item;
break;
}
}
//如果没有此分组就创建
if (null==group)
{
group = s.CreateGroup(groupName);
}
//将联系人添加到此分组
group.AddUser("+861371234567");
#