Click here to Skip to main content
15,900,110 members
Home / Discussions / C#
   

C#

 
QuestionThreading Pin
udikantz6-Oct-07 0:46
udikantz6-Oct-07 0:46 
AnswerRe: Threading Pin
lmoelleb6-Oct-07 1:00
lmoelleb6-Oct-07 1:00 
GeneralRe: Threading Pin
udikantz6-Oct-07 1:52
udikantz6-Oct-07 1:52 
GeneralRe: Threading Pin
lmoelleb6-Oct-07 3:35
lmoelleb6-Oct-07 3:35 
GeneralRe: Threading Pin
udikantz6-Oct-07 6:16
udikantz6-Oct-07 6:16 
Questionhow to check the files are exist or not in a floder Pin
ramyanaidu5-Oct-07 22:45
ramyanaidu5-Oct-07 22:45 
AnswerRe: how to check the files are exist or not in a floder Pin
Hessam Jalali5-Oct-07 23:03
Hessam Jalali5-Oct-07 23:03 
AnswerRe: how to check the files are exist or not in a floder Pin
Abhijit Jana5-Oct-07 23:52
professionalAbhijit Jana5-Oct-07 23:52 
using System;
using System.IO;
using System.Collections;

public class FileHandling
{
public static void Main(string[] args)
{
foreach(string path in args)
{
if(File.Exists(path))
{
// Your code should run here

}
else if(Directory.Exists(path))
{
//Your code should run here
}
else
{
Console.WriteLine("{0} is not a valid file or directory");
}
}
}



Happy Programming
-----
Abhijit
QuestionCancelling a background worker Pin
Muammar©5-Oct-07 22:40
Muammar©5-Oct-07 22:40 
AnswerRe: Cancelling a background worker Pin
Hessam Jalali6-Oct-07 0:19
Hessam Jalali6-Oct-07 0:19 
GeneralRe: Cancelling a background worker Pin
Muammar©6-Oct-07 0:39
Muammar©6-Oct-07 0:39 
GeneralRe: Cancelling a background worker Pin
Hessam Jalali6-Oct-07 1:00
Hessam Jalali6-Oct-07 1:00 
GeneralRe: Cancelling a background worker Pin
Muammar©6-Oct-07 1:33
Muammar©6-Oct-07 1:33 
QuestionCopying files to clipboard?? Pin
Muammar©5-Oct-07 22:19
Muammar©5-Oct-07 22:19 
AnswerRe: Copying files to clipboard?? Pin
pmarfleet5-Oct-07 22:37
pmarfleet5-Oct-07 22:37 
GeneralRe: Copying files to clipboard?? Pin
Muammar©5-Oct-07 22:53
Muammar©5-Oct-07 22:53 
GeneralRe: Copying files to clipboard?? Pin
User 66586-Oct-07 2:11
User 66586-Oct-07 2:11 
GeneralRe: Copying files to clipboard?? Pin
Muammar©6-Oct-07 11:31
Muammar©6-Oct-07 11:31 
QuestionUsers in local users and groups Pin
Surya Ayyagari5-Oct-07 22:02
Surya Ayyagari5-Oct-07 22:02 
AnswerRe: Users in local users and groups [modified] Pin
Hessam Jalali5-Oct-07 23:57
Hessam Jalali5-Oct-07 23:57 
QuestionSelecting an item in a listbox control Pin
Muammar©5-Oct-07 21:43
Muammar©5-Oct-07 21:43 
AnswerRe: Selecting an item in a listbox control Pin
Hessam Jalali5-Oct-07 23:00
Hessam Jalali5-Oct-07 23:00 
GeneralRe: Selecting an item in a listbox control Pin
Muammar©5-Oct-07 23:17
Muammar©5-Oct-07 23:17 
QuestionGetting error to send mail in asp.net 2.0 Pin
Rajesh Ji5-Oct-07 21:25
Rajesh Ji5-Oct-07 21:25 
AnswerRe: Getting error to send mail in asp.net 2.0 Pin
Christian Graus5-Oct-07 22:35
protectorChristian Graus5-Oct-07 22:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.