473,399 Members | 3,106 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

system.IO.Directory.exists

i am not really a programmer, so i have a question on the
system.io.directory.exists

what i am trying to do is have a button, once this button is clicked
it checks to see if the Directory exists, if it does it posts a
message saying software already installed. if not i want to launch the
software from a website to install the appplication. here is what i
have so far.

private void button1_Click(object sender, EventArgs e)
{
if (System.IO.Directory.Exists(@"c:\Path"))
System.Console.WriteLine("Already Installed");
else
System.Diagnostics.Process.Start("Program", "web
Location");

}

Oct 16 '07 #1
9 6263
Hi,

You first have to download the software install file and only then you use
Process.Start

--
Ignacio Machin
www.laceupsolutions.com
Mobile & warehouse Solutions.
<sh*****@ddpa.orgwrote in message
news:11**********************@y27g2000pre.googlegr oups.com...
>i am not really a programmer, so i have a question on the
system.io.directory.exists

what i am trying to do is have a button, once this button is clicked
it checks to see if the Directory exists, if it does it posts a
message saying software already installed. if not i want to launch the
software from a website to install the appplication. here is what i
have so far.

private void button1_Click(object sender, EventArgs e)
{
if (System.IO.Directory.Exists(@"c:\Path"))
System.Console.WriteLine("Already Installed");
else
System.Diagnostics.Process.Start("Program", "web
Location");

}

Oct 16 '07 #2
On Oct 16, 2:25 pm, shug...@ddpa.org wrote:
i am not really a programmer, so i have a question on the
system.io.directory.exists
Well, you've given some code - but what's your actual question? And is
this within a web form or WinForms?

Jon

Oct 16 '07 #3
Well, if you want to perform a download, you are going to have to use
the WebClient, or the HttpWebRequest/HttpWebResponse classes in the
System.Net namespace.

However, I would suggest that you look into ClickOnce, as it does pretty
much everything you are looking to have it do already.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

<sh*****@ddpa.orgwrote in message
news:11**********************@y27g2000pre.googlegr oups.com...
>i am not really a programmer, so i have a question on the
system.io.directory.exists

what i am trying to do is have a button, once this button is clicked
it checks to see if the Directory exists, if it does it posts a
message saying software already installed. if not i want to launch the
software from a website to install the appplication. here is what i
have so far.

private void button1_Click(object sender, EventArgs e)
{
if (System.IO.Directory.Exists(@"c:\Path"))
System.Console.WriteLine("Already Installed");
else
System.Diagnostics.Process.Start("Program", "web
Location");

}
Oct 16 '07 #4
On Oct 16, 8:40 am, "Jon Skeet [C# MVP]" <sk...@pobox.comwrote:
On Oct 16, 2:25 pm, shug...@ddpa.org wrote:
i am not really a programmer, so i have a question on the
system.io.directory.exists

Well, you've given some code - but what's your actual question? And is
this within a web form or WinForms?

Jon
This is in a windows form,

what i am trying to get at is, if the directory already exists within
their PC the button does not appear, is the Directory is not there, i
am going to user the Process.start to send then to the download page,
to install the program.

Oct 16 '07 #5
<sh*****@ddpa.orgwrote:
On Oct 16, 8:40 am, "Jon Skeet [C# MVP]" <sk...@pobox.comwrote:
On Oct 16, 2:25 pm, shug...@ddpa.org wrote:
i am not really a programmer, so i have a question on the
system.io.directory.exists
Well, you've given some code - but what's your actual question? And is
this within a web form or WinForms?

This is in a windows form,

what i am trying to get at is, if the directory already exists within
their PC the button does not appear, is the Directory is not there, i
am going to user the Process.start to send then to the download page,
to install the program.
If the button doesn't appear at all, then you can't react to the click
event. It sounds like you need to tell us a bit more of the bigger
picture, and in particular what problems you're having.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Oct 16 '07 #6
On Oct 16, 12:40 pm, Jon Skeet [C# MVP] <sk...@pobox.comwrote:
<shug...@ddpa.orgwrote:
On Oct 16, 8:40 am, "Jon Skeet [C# MVP]" <sk...@pobox.comwrote:
On Oct 16, 2:25 pm, shug...@ddpa.org wrote:
i am not really a programmer, so i have a question on the
system.io.directory.exists
Well, you've given some code - but what's your actual question? And is
this within a web form or WinForms?
This is in a windows form,
what i am trying to get at is, if the directory already exists within
their PC the button does not appear, is the Directory is not there, i
am going to user the Process.start to send then to the download page,
to install the program.

If the button doesn't appear at all, then you can't react to the click
event. It sounds like you need to tell us a bit more of the bigger
picture, and in particular what problems you're having.

--
Jon Skeet - <sk...@pobox.com>http://www.pobox.com/~skeet Blog:http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
>From the Code i posted, nothing happens not even going out to the
website i selected from the process.start event. i do not even get the
message.

this by itself works fine in association to the button------>
System.Diagnostics.Process.Start("Program", "web Location");

the moment i add the code to check the system directory, i get no
error but i get no response from the button either.

so my objective is to check the system root for a specific set of
folders. if those folders exist then the button should not appear. if
the directory is missing, the button should show up and then take me
to the web address i have suppled.

the reason i have placed the message in the dialog box is cause i
wanted to make sure it was working, before i figured how to only
display the button if the directory is not there.

Oct 16 '07 #7
<sh*****@ddpa.orgwrote:
From the Code i posted, nothing happens not even going out to the
website i selected from the process.start event. i do not even get the
message.

this by itself works fine in association to the button------>
System.Diagnostics.Process.Start("Program", "web Location");

the moment i add the code to check the system directory, i get no
error but i get no response from the button either.
I suggest you run this in the debugger, and put a breakpoint at the
start of the event handler - then you can see what's going on.
so my objective is to check the system root for a specific set of
folders. if those folders exist then the button should not appear. if
the directory is missing, the button should show up and then take me
to the web address i have suppled.

the reason i have placed the message in the dialog box is cause i
wanted to make sure it was working, before i figured how to only
display the button if the directory is not there.
You haven't got a dialog box - you've got output to the console. If you
were expecting a dialog box, that's probably what's wrong.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Oct 16 '07 #8
On Oct 16, 4:48 pm, Jon Skeet [C# MVP] <sk...@pobox.comwrote:
<shug...@ddpa.orgwrote:
From the Code i posted, nothing happens not even going out to the
website i selected from the process.start event. i do not even get the
message.
this by itself works fine in association to the button------>
System.Diagnostics.Process.Start("Program", "web Location");
the moment i add the code to check the system directory, i get no
error but i get no response from the button either.

I suggest you run this in the debugger, and put a breakpoint at the
start of the event handler - then you can see what's going on.
so my objective is to check the system root for a specific set of
folders. if those folders exist then the button should not appear. if
the directory is missing, the button should show up and then take me
to the web address i have suppled.
the reason i have placed the message in the dialog box is cause i
wanted to make sure it was working, before i figured how to only
display the button if the directory is not there.

You haven't got a dialog box - you've got output to the console. If you
were expecting a dialog box, that's probably what's wrong.

--
Jon Skeet - <sk...@pobox.com>http://www.pobox.com/~skeet Blog:http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
that is what i though the:
System.Console.WriteLine("Already Installed");
does. meaning i though a pop would be induced from that command. what
would be the command to cause a pop state the response i want.

Oct 17 '07 #9
On Oct 17, 1:27 pm, shug...@ddpa.org wrote:

<snip>
that is what i though the:
System.Console.WriteLine("Already Installed");
does.
No, that writes to the system console - which may not be attached to
that anything for that process.
meaning i though a pop would be induced from that command. what
would be the command to cause a pop state the response i want.
MessageBox.Show.

Jon

Oct 17 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Matthias Ludwig | last post by:
I'm trying to create a directory on the web server with a vb.net code: .... Dim dirName As String = "w:\filepath\images" If Not Directory.Exists(dirName) Then...
8
by: Siemel Naran | last post by:
Hi. I'm writing a command shell that reads commands from standard input. At this point I have the command in a std::string. Now I want to execute this command in the shell. From the Borland...
2
by: Zeno Lee | last post by:
I'm using File.Exists to test a file on my C: drive. My program was strongly named and had caspol -af run on it to allow it to run from the network. There are 3 ways I am doing this: 1) Run...
6
by: Chad Crowder | last post by:
Getting the following error on my production server whether the file exists or not: "System.IO.IOException: Cannot create a file when that file already exists." Here's the code generating the...
4
by: Elmo Watson | last post by:
Is there a way, with the System.IO class, to do a recursive list of a directory structure? For instance, in DirectoryInfo, you have GetDirectories and GetFiles .... In Directory, you have...
5
by: rcolby | last post by:
Evening, Wondering if someone can point me in the right direction, on how I would compare a system.guid with a system.byte. system.guid (pulled from sql server table with a data type of...
5
by: Philip Wagenaar | last post by:
I have a Windows Form application that monitors a directory using the System.IO.FileSystemWatcher. On the event created I run a sub that sends an xml file over http to a service. When I copy...
4
by: adamrobillard | last post by:
I am very new to vb.net and am using Visual Basic 2005 Express Edition. This is my function that essentially looks at a directory to see if it is valid: 'Local variables Dim sDirectory As...
4
by: Brandon McCombs | last post by:
Hello, From my understanding, DirectoryEntry is used to connect to Active Directory. Although this makes no sense whatsoever I accept it. The problem is how am I supposed to test whether a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.