Click here to Skip to main content
15,889,462 members
Home / Discussions / C#
   

C#

 
QuestionHELP! SETS Pin
sudany_zool29-Oct-08 22:21
sudany_zool29-Oct-08 22:21 
AnswerRe: HELP! SETS Pin
Christian Graus29-Oct-08 22:47
protectorChristian Graus29-Oct-08 22:47 
GeneralRe: HELP! SETS Pin
sudany_zool30-Oct-08 0:20
sudany_zool30-Oct-08 0:20 
GeneralRe: HELP! SETS Pin
leppie30-Oct-08 0:39
leppie30-Oct-08 0:39 
GeneralRe: HELP! SETS Pin
PIEBALDconsult30-Oct-08 4:57
mvePIEBALDconsult30-Oct-08 4:57 
GeneralRe: HELP! SETS Pin
leppie30-Oct-08 22:08
leppie30-Oct-08 22:08 
GeneralRe: HELP! SETS Pin
PIEBALDconsult31-Oct-08 5:38
mvePIEBALDconsult31-Oct-08 5:38 
AnswerRe: HELP! SETS Pin
PIEBALDconsult30-Oct-08 5:00
mvePIEBALDconsult30-Oct-08 5:00 
GeneralRe: HELP! SETS Pin
sudany_zool30-Oct-08 16:14
sudany_zool30-Oct-08 16:14 
QuestionHow to send email programmatically... Pin
BlrBoy29-Oct-08 21:26
BlrBoy29-Oct-08 21:26 
AnswerRe: How to send email programmatically... Pin
Christian Graus29-Oct-08 21:53
protectorChristian Graus29-Oct-08 21:53 
GeneralRe: How to send email programmatically... Pin
jas0n231-Nov-08 12:06
jas0n231-Nov-08 12:06 
QuestionComPort Library Pin
DotNetCoderJunior29-Oct-08 21:08
DotNetCoderJunior29-Oct-08 21:08 
AnswerRe: ComPort Library Pin
Mbah Dhaim29-Oct-08 22:08
Mbah Dhaim29-Oct-08 22:08 
GeneralRe: ComPort Library Pin
DotNetCoderJunior29-Oct-08 22:15
DotNetCoderJunior29-Oct-08 22:15 
GeneralRe: ComPort Library Pin
Mbah Dhaim29-Oct-08 22:35
Mbah Dhaim29-Oct-08 22:35 
GeneralRe: ComPort Library Pin
DotNetCoderJunior29-Oct-08 22:49
DotNetCoderJunior29-Oct-08 22:49 
GeneralRe: ComPort Library Pin
Mbah Dhaim29-Oct-08 22:53
Mbah Dhaim29-Oct-08 22:53 
QuestionListview Column Sorting Pin
vishnukamath29-Oct-08 20:49
vishnukamath29-Oct-08 20:49 
AnswerRe: Listview Column Sorting Pin
AhsanS29-Oct-08 23:29
AhsanS29-Oct-08 23:29 
GeneralRe: Listview Column Sorting Pin
vishnukamath30-Oct-08 1:04
vishnukamath30-Oct-08 1:04 
GeneralRe: Listview Column Sorting Pin
Simon P Stevens30-Oct-08 2:28
Simon P Stevens30-Oct-08 2:28 
QuestionHow to create subfolder by FtpWebRequest in .net2.0? Pin
mimimimilaw29-Oct-08 20:49
mimimimilaw29-Oct-08 20:49 
FtpWebRequest reqFTP;
dirName = "/dir1//dir2//dir3";
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ip + "/" + dirName));
reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory;
this.textBox_status.Text += WebRequestMethods.Ftp.ListDirectory;
reqFTP.UseBinary = true;
reqFTP.Credentials = new NetworkCredential(Username, Password);
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream ftpStream = response.GetResponseStream();
ftpStream.Close();
response.Close();


First, how to check the folder exist or not on the FTP?
The code can only create a directory in the path can we create multiple directory in the same time?
Thanks
AnswerRe: How to create subfolder by FtpWebRequest in .net2.0? Pin
leppie30-Oct-08 0:41
leppie30-Oct-08 0:41 
QuestionCombobox binded in a datagrid view Pin
DJ24529-Oct-08 20:29
DJ24529-Oct-08 20:29 

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.