tagged [path]

When should I use File.separator and when File.pathSeparator?

When should I use File.separator and when File.pathSeparator? In the `File` class there are two strings, [separator](http://docs.oracle.com/javase/8/docs/api/java/io/File.html#separator) and [pathSepa...

13 Aug at 18:43

How can i get the path of the current user's "Application Data" folder?

How can i get the path of the current user's "Application Data" folder? 1)how can i find out the Windows Installation drive in which the user is working.? I need this to navigate to the in Documentsan...

4 Apr at 11:31

ASP.Net C# ResolveClientUrl inside Class

ASP.Net C# ResolveClientUrl inside Class I have the following code: But I would like to have: ``` public class NavigationPath { private string menuItems = "" + "

Error "'git' is not recognized as an internal or external command"

Error "'git' is not recognized as an internal or external command" I have an installation of Git for Windows, but when I try to use the `git` command in Command Prompt, I get the following error: How ...

Writing File to Temp Folder

Writing File to Temp Folder I want to use `StreamWriter` to write a file to the temp folder. It might be a different path on each PC, so I tried using `%temp%\SaveFile.txt` but it didn't work. How can...

21 Nov at 20:2

Installing Python 2.7 on Windows 8

Installing Python 2.7 on Windows 8 So I'm trying python 2.7 on my Windows. It is running Windows 8. I cannot add it to my path. I've done the usual: using the advanced system settings, environment var...

27 Jan at 03:42

So what IS the right direction of the path's slash (/ or \) under Windows?

So what IS the right direction of the path's slash (/ or \) under Windows? It seems Windows insists on writing a backslash `\` in file paths, whereas .NET's URI class writes them with a slash `/`. Is ...

30 Sep at 11:54

Add backslash to string

Add backslash to string I have a path and I want to add to it some new sub folder named test. Please help me find out how to do that. My code is : The result I'm getting is : "c:\Users\My Name\Picture...

3 Jun at 14:47

How to use glob() to find files recursively?

How to use glob() to find files recursively? This is what I have: but I want to search the subfolders of src. Something like this would work: But this is obviously limited and clunky.

20 Mar at 00:35

What does "./" (dot slash) refer to in terms of an HTML file path location?

What does "./" (dot slash) refer to in terms of an HTML file path location? I know `../` means go up a path, but what does `./` mean exactly? I was recently going through a tutorial and it seems to be...

6 Sep at 20:36

Python Setup Disabling Path Length Limit Pros and Cons?

Python Setup Disabling Path Length Limit Pros and Cons? I recently installed Python 3.7 and at the end of the setup, there is the option to "Disable path length limit". I don't know whether or not I s...

14 May at 02:45

Should I Use Path.GetRandomFileName or use a Guid?

Should I Use Path.GetRandomFileName or use a Guid? I need to generate unique folder names, should I use [Path.GetRandomFileName](http://msdn.microsoft.com/en-us/library/system.io.path.getrandomfilenam...

3 Feb at 19:34

Import a module from a relative path

Import a module from a relative path How do I import a Python module given its relative path? For example, if `dirFoo` contains `Foo.py` and `dirBar`, and `dirBar` contains `Bar.py`, how do I import `...

28 Aug at 13:52

Setting up enviromental variables in Windows 10 to use java and javac

Setting up enviromental variables in Windows 10 to use java and javac I got a new laptop with Windows 10 and I want to set it up so I can use `java` and `javac` from the command line. I have searched ...

How can I safely create a directory (possibly including intermediate directories)?

How can I safely create a directory (possibly including intermediate directories)? I am writing a file using Python, and I want it to be placed in a specific path. How can I safely make sure that the ...

Check whether a path is valid

Check whether a path is valid I am just wondering: I am looking for a way to validate if a given path is valid. . Problem is, I can't find anything in the .Net API. Due to the many formats and locatio...

8 Aug at 01:42

Path.Combine absolute with relative path strings

Path.Combine absolute with relative path strings I'm trying to join a Windows path with a relative path using [Path.Combine](http://msdn.microsoft.com/en-us/library/system.io.path.combine.aspx). Howev...

20 May at 09:42

Get resources folder path c#

Get resources folder path c# Some resources I have in my project are fine and working Ok using string paths but what if I move the project to another directory or to another computer, it will stop wor...

28 Nov at 04:10

Path.Combine for URLs?

Path.Combine for URLs? [Path.Combine](https://msdn.microsoft.com/en-us/library/system.io.path.combine%28v=vs.110%29.aspx) is handy, but is there a similar function in the .NET framework for [URLs](htt...

3 Feb at 15:1

Specify a Root Path of your HTML directory for script links?

Specify a Root Path of your HTML directory for script links? I'm writing a template for dreamweaver, and don't want to change the scripts for subfolder pages. Is there a way to make the path relative ...

14 Jan at 14:5

Absolute URL from base + relative URL in C#

Absolute URL from base + relative URL in C# I have a base URL : And a relative one : How to get the absolute URL from this ? It's pretty straighforward using string manipulation, but I would like to d...

19 Aug at 10:38

src absolute path problem

src absolute path problem I have an image in and i try to display it in a page with this: but it's not working.The file is actually there and if I try to refer to it with a relative path i got the pic...

1 Mar at 17:9

Get current folder path

Get current folder path I want to create a program that converts files. I would like the user to be able to place the executable file in any directory, and when executing that program (double-clicking...

17 Jan at 10:11

Path.Combine and the dot notation

Path.Combine and the dot notation I'm looking for something akin to `Path.Combine` method that will help me correctly combine absolute and relative paths. For example, I want to yield `c:\alpha\gamma`...

27 Jan at 18:20

How to change the Jupyter start-up folder

How to change the Jupyter start-up folder I tried following the instructions given on the [Jupyter Notebook documentation](http://jupyter-notebook-beginner-guide.readthedocs.org/en/latest/execute.html...