using System.Diagnostics
string str = @"C:\windows\system32\notepad.exe"; // Đường dẫn + file cần mở
Process process = new Process();
process.StartInfo.FileName = str;
process.Start();
// Hoặc
process.start(str);
- Blogger Comment
- Facebook Comment
Subscribe to:
Post Comments
(
Atom
)
0 comments:
Post a Comment