Questions tagged [path-combine]

System.IO.Path.Combine is a .NET method to combine two (or more) strings into a path.

System.IO.Path.Combine is a .NET method to combine two (or more) strings into a path.

21 questions
0
votes
1 answer

Error when pull data from dictionary and path-combine in pandas

I tried to pull data from 3 cities. How can I read all 3 city data instead of reading one by one below? Do I have duplicated code for reading data below? How to read data from dictionary to avoid the error? Thanks so much. import csv with…
Jasch
  • 5
  • 4
0
votes
1 answer

Combining .rda files

I am trying to combine two .rda files into one .rda file. I've only been able to call one .rda files data and the second one isnt coming up. Also, the .rda's I've generated are too small to contain all the data I need. This is the general code I am…
Rosabebi
  • 3
  • 2
0
votes
1 answer

Path.Combine on urls gives exception : The given path's format is not supported

I have an error in following code Uri imagesrc = new Uri("http://somewebsite.com/demo/images/slideshow/29.jpg"); Image image = Image.FromFile(Path.Combine("/comph/", imagesrc.ToString())); I have also tried following code - where /comph/ is my root…
skhurams
  • 2,133
  • 7
  • 45
  • 82
0
votes
1 answer

Combining/ Merging similar XML structure within one file

I have the following structure in an XML-file:
sequil
  • 31
  • 3
0
votes
1 answer

How to combine XPATH "select //td/text() or //td/p/text()" into one sentence?

I want to select text() within each row in the following HTML. However, the text I want is either in the td element or the p element, so I have to write two statements to ensure each row is selected. How do I combine the two statements into…
Leonard Huang
  • 173
  • 1
  • 2
  • 9
0
votes
1 answer

PathCombine function not working correctly

I'm having some difficulties with the PathCombine function. It does not seem to work correctly in conjunction with SHFileOperation(). My code is as follows: //beginning of method TCHAR* root = new TCHAR[MAX_PATH]; root =…
JHowzer
  • 3,684
  • 4
  • 30
  • 36
1
2