In my application one exe is there, when user loged in first time exe download and install automatical,i done that thing using custom installer ,but now i want to check whether the application(exe) already installerd or not in the local system(like c:\programfiles\css\css.exe)
please any one help me to resolve this problem
sarathy
Member
38 Points
58 Posts
Berfore installation check the folder alreadty available or not
Sep 28, 2011 01:36 PM|LINK
Hello friends
In my application one exe is there, when user loged in first time exe download and install automatical,i done that thing using custom installer ,but now i want to check whether the application(exe) already installerd or not in the local system(like c:\programfiles\css\css.exe) please any one help me to resolve this problem
tehremo
Star
10540 Points
1704 Posts
Re: Berfore installation check the folder alreadty available or not
Sep 28, 2011 04:50 PM|LINK
if (File.Exists("c:\programfiles\css\css.exe"))
{
// File Exists
}
else
{
// File does not exist
}