Click here to Skip to main content
15,923,083 members
Home / Discussions / C#
   

C#

 
Questionescape sequences in C# Pin
lawrenceinba13-Jan-09 0:04
lawrenceinba13-Jan-09 0:04 
AnswerRe: escape sequences in C# Pin
SeMartens13-Jan-09 0:10
SeMartens13-Jan-09 0:10 
GeneralRe: escape sequences in C# Pin
lawrenceinba13-Jan-09 0:15
lawrenceinba13-Jan-09 0:15 
GeneralRe: escape sequences in C# Pin
SeMartens13-Jan-09 0:17
SeMartens13-Jan-09 0:17 
GeneralRe: escape sequences in C# Pin
lawrenceinba13-Jan-09 0:20
lawrenceinba13-Jan-09 0:20 
GeneralRe: escape sequences in C# Pin
SeMartens13-Jan-09 0:26
SeMartens13-Jan-09 0:26 
GeneralRe: escape sequences in C# Pin
lawrenceinba13-Jan-09 0:51
lawrenceinba13-Jan-09 0:51 
GeneralRe: escape sequences in C# Pin
Guffa13-Jan-09 0:53
Guffa13-Jan-09 0:53 
GeneralRe: escape sequences in C# Pin
S. Senthil Kumar13-Jan-09 0:56
S. Senthil Kumar13-Jan-09 0:56 
GeneralThreads and random() Pin
gudrunkr13-Jan-09 0:01
gudrunkr13-Jan-09 0:01 
GeneralRe: Threads and random() Pin
SeMartens13-Jan-09 0:06
SeMartens13-Jan-09 0:06 
GeneralRe: Threads and random() Pin
gudrunkr13-Jan-09 0:13
gudrunkr13-Jan-09 0:13 
GeneralRe: Threads and random() Pin
SeMartens13-Jan-09 0:15
SeMartens13-Jan-09 0:15 
GeneralRe: Threads and random() Pin
S. Senthil Kumar13-Jan-09 1:04
S. Senthil Kumar13-Jan-09 1:04 
QuestionQuestion on SqlDataReader[string name] Pin
Dewald12-Jan-09 23:08
Dewald12-Jan-09 23:08 
AnswerRe: Question on SqlDataReader[string name] Pin
SeMartens12-Jan-09 23:14
SeMartens12-Jan-09 23:14 
AnswerRe: Question on SqlDataReader[string name] Pin
Wendelius12-Jan-09 23:35
mentorWendelius12-Jan-09 23:35 
GeneralRe: Question on SqlDataReader[string name] Pin
Dewald12-Jan-09 23:55
Dewald12-Jan-09 23:55 
GeneralRe: Question on SqlDataReader[string name] Pin
Wendelius13-Jan-09 0:02
mentorWendelius13-Jan-09 0:02 
Questionsaving image in image folder using c# Pin
sandhya1412-Jan-09 23:00
sandhya1412-Jan-09 23:00 
AnswerRe: saving image in image folder using c# Pin
musefan12-Jan-09 23:06
musefan12-Jan-09 23:06 
GeneralRe: saving image in image folder using c# Pin
sandhya1414-Jan-09 18:11
sandhya1414-Jan-09 18:11 
GeneralRe: saving image in image folder using c# Pin
musefan14-Jan-09 22:13
musefan14-Jan-09 22:13 
GeneralRe: saving image in image folder using c# Pin
sandhya1415-Jan-09 0:34
sandhya1415-Jan-09 0:34 
GeneralRe: saving image in image folder using c# Pin
musefan15-Jan-09 0:44
musefan15-Jan-09 0:44 
In my opinion your best option would be to create the folder through code.

lets say you want a folder on the C Drive for example you would code something like this:


System.IO.Directory.CreateDirectory("C:\\MyNewFolder");


then you can access that with the same code as previously given.

There are also ways to access the current path of system folder such as 'Program Files' and 'Desktop' but i cant remember that of the top of my head, you will have to look at that if you need something like that.

And remember not all computer will be setup the same. Some may not have a C Drive for instance

P.S. you can access any folder that you know the full path of

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.