tagged [path]

Materialized path pattern VS Hierarchyid

Materialized path pattern VS Hierarchyid I am reading the SQL server 2008 bible and it says the materialized path pattern is significantly faster then the hierarchyid. Is this really true? How can I m...

Get path to execution directory of Windows Forms application

Get path to execution directory of Windows Forms application I would like to get the path to the execution directory of a Windows Forms application. (That is, the directory in which the executable is ...

20 Dec at 16:15

How to get folder path from file path with CMD

How to get folder path from file path with CMD I need path to the folder that contains cmd file. With `%0` I can get the file name. But how to get the folder name? P.S. My current directory != folder ...

21 Dec at 19:47

How can I determine if a given drive letter is a local, mapped, or USB drive?

How can I determine if a given drive letter is a local, mapped, or USB drive? Given the letter of a drive, how can I determine what type of drive it is? For example, whether E:\ is a USB drive, a netw...

30 Jun at 17:13

How Can I Remove The 'file:\\' From the Return Value of Path.GetDirectoryName() in C#

How Can I Remove The 'file:\\' From the Return Value of Path.GetDirectoryName() in C# output: What's the best way to return only `file:\\` will throw exception when I call `doc.Save(returnPath)` ,howe...

1 Jun at 05:42

@(at) sign in file path/string

@(at) sign in file path/string > [What's the @ in front of a string for .NET?](https://stackoverflow.com/questions/556133/whats-the-in-front-of-a-string-for-net) I have the following code: What does...

23 May at 12:34

Converting a URI path to a relative file system path in .NET

Converting a URI path to a relative file system path in .NET How do I convert an absolute or relative URI path (e.g. `/foo/bar.txt`) to a (segmentwise) corresponding relative file system path (e.g. `f...

14 Mar at 14:10

Get full path without filename from path that includes filename

Get full path without filename from path that includes filename Is there anything built into `System.IO.Path` that gives me just the filepath? For example, if I have a `string` > @"c:\webserver\public...

22 Apr at 16:3

Running python script inside ipython

Running python script inside ipython Is it possible to run a python script (not module) from inside ipython without indicating its path? I tried to set PYTHONPATH but it seems to work only for modules...

3 May at 00:4

Absolute path back to web-relative path

Absolute path back to web-relative path If I have managed to locate and verify the existence of a file using Server.MapPath and I now want to send the user directly to that file, what is the way to co...

20 Mar at 14:51

Using / or \\ for folder paths in C#

Using / or \\ for folder paths in C# When writing file paths in C#, I found that I can either write something like "C:\" or "C:/" and get the same path. Which one is recommended? I heard somewhere tha...

1 Jan at 19:37

Why doesn't os.path.join() work in this case?

Why doesn't os.path.join() work in this case? The below code will not join, when debugged the command does not store the whole path but just the last entry. When I test this it only stores the `/new_s...

16 Dec at 04:54

"SystemFolder" in WIX and C#

"SystemFolder" in WIX and C# An installer I have created with WiX installs a DLL using the `SystemFolder` variable, as well as a C# app into another folder. I want to directly reference the DLL from t...

30 Mar at 11:6

Where can I set path to make.exe on Windows?

Where can I set path to make.exe on Windows? When I try run `make` from cmd-console on Windows, it runs Turbo Delphi's `make.exe` but I need MSYS's `make.exe`. There is no mention about Turbo Delphi i...

17 Jun at 14:49

Get absolute paths of all files in a directory

Get absolute paths of all files in a directory How do I get the absolute paths of all the files in a directory that could have many sub-folders in Python? I know `os.walk()` recursively gives me a lis...

9 Jan at 18:58

Python os.path.join() on a list

Python os.path.join() on a list I can do But, when I do What am I missing here?

23 Feb at 13:11

How to get current working directory in Java?

How to get current working directory in Java? Let's say I have my main class in `C:\Users\Justian\Documents\`. How can I get my program to show that it's in `C:\Users\Justian\Documents`? Hard-Coding i...

18 Dec at 18:57

Java, How to add library files in netbeans?

Java, How to add library files in netbeans? I am new to the Netbeans IDE and Java. I have a java project that shows lot of compilation errors: Can somebody please help me with these errors, How do I a...

27 Jul at 13:3

Get parent directory name in Node.js

Get parent directory name in Node.js I am using Node.js, and I want to obtain the parent directory name for a file. I have the file `"../test1/folder1/FolderIWant/test.txt"`. I want to get `"FolderIWa...

28 Apr at 17:23

Get file name from absolute path in Nodejs?

Get file name from absolute path in Nodejs? How can I get the file name from an absolute path in Nodejs? e.g. `"foo.txt"` from `"/var/www/foo.txt"` I know it works with a string operation, like `fullp...

8 Apr at 08:12

How do you install an MSI with msiexec into a specific directory?

How do you install an MSI with msiexec into a specific directory? I want to install an MSI file with msiexec into a specific directory. I am using: Using "INSTALLDIR" is not working properly because t...

20 Sep at 18:42

Does Java have a path joining method?

Does Java have a path joining method? ### Exact Duplicate: [combine paths in java](https://stackoverflow.com/questions/412380/) I would like to know if there is such a method in Java. Take this snippe...

20 Jun at 09:12

Creating a File that the Path does not exists?

Creating a File that the Path does not exists? I just can't get around this. I am able to create a file with `File.Create`... `File.CreateText` and so on but only if the path exists. If the path doesn...

3 Aug at 12:54

How should I write a Windows path in a Python string literal?

How should I write a Windows path in a Python string literal? What is the best way to represent a Windows directory, for example `"C:\meshes\as"`? I have been trying to modify a script but it never wo...

13 Jan at 08:24

Regex Last occurrence?

Regex Last occurrence? I'm trying to catch the last part after the last backslash I need the `\Web_ERP_Assistant` (with the `\`) My idea was : ``` C:\Projects\Ensure_Solution\Assistance\App_WebReferen...

27 Aug at 09:29

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...