Tagged Questions

A path, the general form of a file name or of a directory name, specifies a unique location in a file system.

learn more… | top users | synonyms (1)

133
votes
9answers
202k views

How to get the current URL in jQuery?

I am using jQuery. I'd like to get the path of the current URL and assign it to a variable. Example URL: http://localhost/menuname.de?foo=bar&number=0"
126
votes
12answers
18k views

Path.Combine for Urls?

Path.Combine is handy, but is there a similar function in the .NET framework for Urls? I'm looking for syntax like this: Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg") which would return: ...
120
votes
14answers
89k views

Setting environment variables in OS X?

What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit: /etc/paths ~/.profile ~/.tcshrc I don't even have ...
52
votes
1answer
37k views

server.mappath(“.”), server.mappath(“~”), server.mappath(@“\”), server.mappath(“/”). What is the difference?

Can anyone explain the difference between Server.MapPath("."), Server.MapPath("~"), Server.MapPath(@"\") and Server.MapPath("/")?
50
votes
5answers
25k views

C# getting the path of %AppData%

C# 2008 SP1 I am using this code below: dt.ReadXml("%AppData%\\DateLinks.xml"); However, I am getting an exception that point to the location of where my application is running from: Could not ...
40
votes
11answers
38k views

How to get the path of a running jar file?

My code runs inside a jar file, say foo.jar, and I need to know, in the code, in which folder the running foo.jar is. So, if foo.jar is in C:\FOO\, I want to get that path no matter what my current ...
40
votes
11answers
52k views

How to remove illegal characters from path and filenames?

I need a robust and simple way to remove illegal path and file characters from a simple string. I've used the below code but it doesn't seem to do anything, what am I missing? using System; using ...
38
votes
13answers
33k views

How to construct a relative path in Java from two absolute paths (or URLs)?

Given two absolue paths, e.g. /var/data/stuff/xyz.dat /var/data How can one create a relative path that uses the second path as its base? In the example above, the result should be: ./stuff/xyz.dat
36
votes
5answers
6k views

Combine paths in Java

Is there a Java equivalent for System.IO.Path.Combine in C#/.NET? Or any code to accomplish this?
33
votes
16answers
26k views

Get the application's path

I've recently searched how I could get the application's directory in Java. I've finally found the answer but I've needed surprisingly long because searching for such a generic term isn't easy. I ...
29
votes
5answers
15k views

python, path of script [closed]

Possible Duplicate: Retrieving python module path How do i get the path of a the python script i am running in? i was doing dirname(sys.argv[0]) however on mac i got only the filename and ...
28
votes
16answers
97k views

Eclipse - no Java (JRE) / (JDK) … no virtual machine

I am trying to get Eclipse Galileo to re-run on my computer - i have run it before with no problems but now i keep getting this error: A java Runtime Environment (JRE) or Java Development kit ...
28
votes
3answers
31k views

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 file name. But how to get folder name? c:\temp\test.cmd >> test.cmd P.S. My current directory != folder of the script.
28
votes
11answers
10k views

Test if executable exists in Python?

In python, is there a portable and simple way to test if an executable program exists? By simple I mean something like the 'which' command which would be just perfect. I don't want to search PATH ...
28
votes
5answers
14k views

C# Sanitize File Name

I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was ...
28
votes
8answers
8k views

Where can I find my .emacs file for Emacs running on Windows?

I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what ...
27
votes
4answers
574 views

Algorithm to find solution to puzzle

I am trying to make a game where a player have to find his way from Start to End on the Game Board. ![Game board][1] As you see this Game Board contains a bunch of red circular obstacles. To win the ...
27
votes
13answers
41k views

How do I get the full path to a Perl script that is executing?

I have Perl script and need to determine the full path and filename of the script during execution. I discovered that depending on how you call the script $0 varies and sometimes contains the ...
24
votes
7answers
13k views

Use a Glob() to find files recursively in Python?

This is what I have: Glob(os.path.join('src','*.c')) but I want to search the subfolders of src. Something like this would work: Glob(os.path.join('src','*.c')) Glob(os.path.join('src','*','*.c')) ...
23
votes
6answers
21k views

How to get working path of a wcf application?

I want to get the working folder of a WCF application. How can I get it? If I try HttpContext.Current.Request.MapPath(HttpContext.Current.Request.ApplicationPath) I get a null reference exception ...
22
votes
3answers
4k views

How do I join two paths in C#?

I searched StackOverflow for the title of this question, but I didn't find anything ... so, how do I join two file paths ?
21
votes
3answers
3k views

How do I get the path of the current executed file in python?

This may seam a newbie question but it is not. It looks that common approaches are not always working: Currently I know only two options but none of them looks to work an all cases. sys.argv[0] ...
20
votes
10answers
9k views

BASH: Convert absolute path into relative path given a current directory

absolute="/foo/bar" current="/foo/baz/foo" # magic relative="../../bar" Can you help me with magic? (Hopefully not too complicated code...)
20
votes
1answer
6k views

Convert file path to a file URI?

Does the .NET Framework have any methods for converting a path (e.g. "C:\whatever.txt") into a file URI (e.g. "file:///C:/whatever.txt")? The Uri class has the reverse (from a file URI to absolute ...
20
votes
9answers
47k views

How to add native library to “java.library.path” with Eclipse launch (instead of overriding it)

I got a native library that needs to be added to java.library.path. With JVM argument -Djava.library.path=path... I can set the path as I want. My problem is that my other library (pentaho reporting) ...
18
votes
5answers
10k views

How do I set $PATH such that `ssh user@host command` works?

I can't seem to set a new $PATH such that it is used when executing commands via ssh user@host command. I have tried adding export PATH=$PATH:$HOME/new_path to ~/.bashrc and ~/.profile on the remote ...
17
votes
4answers
255 views

Case-inconsistency of PHP file paths on Mac / MAMP?

I'm developing a PHP program on MAMP, and just realized the following screwy behavior: echo "<br/>PATH = ".dirname(__FILE__); include 'include.php'; include.php: <?php echo ...
17
votes
2answers
20k views

Passing two command parameters using a WPF binding

I have a command which I am executing from my XAML file using the following standard syntax: <Button Content="Zoom" Command="{Binding MyViewModel.ZoomCommand}"/> This worked fine until I ...
15
votes
3answers
631 views

What is __path__ useful for?

I had never noticed the __path__ attribute that gets defined on some of my packages before today. According to the documentation: Packages support one more special attribute, __path__. This is ...
15
votes
1answer
1k views

Find full path of python interpreter?

How do I find the full path of the currently running Python interpreter?
15
votes
1answer
4k views

SVN - Change working copy to point at new svn path

I've got a SVN Repository that has moved to a new address/path. However, I've got a working copy with uncommitted source code still pointing to the old (now invalid) repository path. How do you change ...
15
votes
9answers
4k views

Algorithm to find two points furthest away from each other

Im looking for an algorithm to be used in a racing game Im making. The map/level/track is randomly generated so I need to find two locations, start and goal, that makes use of the most of the map. ...
14
votes
3answers
5k views

Add a new asset path in Rails 3.1

Does anyone know how to add another folder to the asset pipeline in Rails 3.1? I'd like to serve app/assets/fonts the same way app/assets/images is served.
14
votes
2answers
196 views

Does there exist a method in C# to get the relative path given two absolute path inputs?

Does there exist a method in C# to get the relative path given two absolute path inputs? That is I would have two inputs (with the first folder as the base) such as c:\temp1\adam\ and ...
14
votes
5answers
23k views

How to get a path to a resource in a Java JAR file

I am trying to get a path to a Resource but I have had no luck. This works (both in IDE and with the JAR) but this way I can't get a path to a file, only the file contents: ClassLoader classLoader ...
14
votes
4answers
2k views

Is there a shorter way to require a file in the same directory in ruby?

Is there a shorter way to require a file located in the same directory (as the script being executed)? require File.expand_path(File.dirname(__FILE__) + '/some_other_script') I read that require ...
13
votes
7answers
4k views

How can I compare (directory) paths in C#?

If I have two DirectoryInfo objects, how can I compare them for semantic equality? For example, the following paths should all be considered equal to C:\temp: C:\temp C:\temp\ C:\temp\. ...
13
votes
3answers
5k views

How to add folder to assembly search path at runtime in .NET?

My DLLs are loaded by a third-party application, which we can not customize. My assemblies have to be located in their own folder. I can not put them into GAC (my application has a requirement to be ...
13
votes
8answers
3k views

How do I render thick 2D lines as polygons?

I have a path made up of a list of 2D points. I want to turn these into a strip of triangles in order to render a textured line with a specified thickness (and other such things). So essentially the ...
13
votes
3answers
8k views

Path.Combine absolute with relative path strings

I'm trying to join a windows path with a relative path using Path.Combine However, Path.Combine(@"C:\blah\",@"..\bling") return "C:\blah..\bling" instead of "C:\bling\" Does anyone know how to ...
13
votes
15answers
4k views

How to delete a long path in windows

OK, this isn't necessarily programming related, but it might have a programmatic solution. When importing a project into eclipse, it somehow started creating recursive versions of the directory. ...
13
votes
1answer
8k views

Absolute URL from base + relative URL in C#

I have a base URL : http://my.server.com/folder/directory/sample And a relative one : ../../other/path How to get the absolute URL from this ? It's pretty straighforward using string ...
12
votes
7answers
11k views

Django: serving ADMIN media files

I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot ...
12
votes
4answers
8k views

Does Java have a path joining method? [closed]

Exact Duplicate: combine paths in java I would like to know if there is such a method in Java. Take this snippet as example : // this will output a/b System.out.println(path_join("a","b")); // a/b ...
12
votes
1answer
2k views

Getting absolute path of a file

How can I convert a relative path to an absolute path in C on Unix? Is there a convenient system function for this? On Windows there is a GetFullPathName function that does the job, but I didn't find ...
11
votes
4answers
666 views

Java 7: Path vs File

For new applications written in Java 7, is there any reason to use a java.io.File object any more or can we consider it deprecated? I believe a java.nio.file.Path can do everything a java.io.File ...
11
votes
1answer
594 views

Is there a problem with having /usr/local/bin before /usr/bin on the path in OS X?

By default, OS X 10.6 uses /usr/libexec/path_helper to add the following paths listed in the file /etc/paths: /usr/bin /bin /usr/sbin /sbin /usr/local/bin This means that /usr/bin comes before ...
11
votes
1answer
792 views

Using environment variable in a file path

I've got an environment variable set that points to a specific folder (call it MYFOLDER for example). When typing in %MYFOLDER%\SubFolder into windows explorer the subfolder appears. However, when I ...
11
votes
13answers
924 views

Why some professional web designers use absolute paths instead of relative paths (e.g for CSS, Javascript, images, etc.)?

I used to think that everyone used relative paths (e.g. /styles/style.css). But I wonder why some popuar web designers (e.g. http://www.getfinch.com and http://31three.com/) use absolute paths ...
11
votes
5answers
7k views

Relative Paths in Javascript in an external file

So I'm running this javascript, and everything works fine, except the paths to the background image. It works on my local ASP.NET Dev environment, but it does NOT work when deployed to a server in a ...

1 2 3 4 5 54