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