tagged [path]

Convert UNC path to 'file:///' URL in ASP.NET

Convert UNC path to 'file:///' URL in ASP.NET I need to convert UNC paths to `file:///` URLs. For example: Is there a built-in function for this?

30 Mar at 20:55

Where does Chrome store extensions?

Where does Chrome store extensions? I looked in: for unpacked extensions, but that folder is empty for me. For newer versions, where does Chrome store the files?

__FILE__ macro shows full path

__FILE__ macro shows full path The standard predefined macro `__FILE__` available in C shows the full path to the file. Is there any way to short the path? I mean instead of I see or

30 Mar at 16:39

what does it mean "(include_path='.:/usr/share/pear:/usr/share/php')"?

what does it mean "(include_path='.:/usr/share/pear:/usr/share/php')"? I have file structure on EC2 like : but facing some file referencing problem. I have tried file referencing as: ``` `require_once...

8 Aug at 06:17

How to combine paths in Java?

How to combine paths in Java? Is there a Java equivalent for [System.IO.Path.Combine()](http://msdn.microsoft.com/en-us/library/system.io.path.combine.aspx) in C#/.NET? Or any code to accomplish this?...

22 Aug at 08:53

Unrecognized escape sequence for path string containing backslashes

Unrecognized escape sequence for path string containing backslashes The following code generates a compiler error about an "unrecognized escape sequence" for each backslash: I guess I need to escape b...

9 Aug at 07:51

How to retrieve absolute path given relative

How to retrieve absolute path given relative Is there a command to retrieve the absolute path given a relative path? For example I want $line to contain the absolute path of each file in dir `./etc/`

24 May at 13:13

Check if full path given

Check if full path given Is there a method to check if given path is full path? Right now im doing this: But there must be more elegant way for checking this?

23 Jun at 12:36

Why doesn't Dijkstra's algorithm work for negative weight edges?

Why doesn't Dijkstra's algorithm work for negative weight edges? Can somebody tell me why Dijkstra's algorithm for single source shortest path assumes that the edges must be non-negative. I am talking...

Difference between forward slash (/) and backslash (\) in file path

Difference between forward slash (/) and backslash (\) in file path I was wondering about the difference between `\` and `/` in file paths. I have noticed that sometimes a path contains `/`and sometim...

2 Jul at 20:52