您的位置:首页 > 其它

How to implement "Find Target"

2004-09-08 20:19 295 查看
string file = @"c:/test.txt";
string folder = System.IO.Path.GetDirectoryName(file);
try
{
 System.Diagnostics.Process.Start(folder);
 System.Threading.Thread.Sleep(800);
 SendKeys.Send(System.IO.Path.GetFileName(file));
}
catch {};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  string file c
相关文章推荐