R Rafael tejera Jun 27, 2007 #1 How I can specify a valid path. I'm new.. is c:\Image\image.jpeg or c:\\image\\image.jpeg ? Rafael
F Frank Rizzo Jun 27, 2007 #2 Rafael said: How I can specify a valid path. I'm new.. is c:\Image\image.jpeg or c:\\image\\image.jpeg ? Rafael Click to expand... string Path = @"c:\image\image.jpeg"; The @ operator obviates the need for escape characters.
Rafael said: How I can specify a valid path. I'm new.. is c:\Image\image.jpeg or c:\\image\\image.jpeg ? Rafael Click to expand... string Path = @"c:\image\image.jpeg"; The @ operator obviates the need for escape characters.
P Peter Bradley Jun 27, 2007 #3 Ysgrifennodd Rafael tejera: How I can specify a valid path. I'm new.. is c:\Image\image.jpeg or c:\\image\\image.jpeg ? Rafael Click to expand... Hi Rafael, You can do: "c:\\image\\image.jpeg" Or you can do: @"c:\Image\image.jpeg" Good, eh? Peter
Ysgrifennodd Rafael tejera: How I can specify a valid path. I'm new.. is c:\Image\image.jpeg or c:\\image\\image.jpeg ? Rafael Click to expand... Hi Rafael, You can do: "c:\\image\\image.jpeg" Or you can do: @"c:\Image\image.jpeg" Good, eh? Peter
J Joe Jun 27, 2007 #4 Prepend the path string with @ -- string myPath = @"c:\temp\images\whataver.jpg";