Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

90
votes
15answers
105k views

python: import a module from a folder

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 Bar.py into Foo.py? Here's a visual ...
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...)
18
votes
5answers
16k views

Batch File: Resolve Absolute Path from Relative Path and/or File Name

In a Windows Batch script is there any way to return an absolute path from a value containing a filename and/or relative path? Given: "..\" "..\somefile.txt" I need the absolute path relative to ...
15
votes
4answers
3k views

Wrong extraction of .attr(“href”) in IE7 vs all other browsers?

Can it really be true that the attr("href") command for a link is handled very different in IE7 in comparison to all other browsers? Let's say I have a page at http://example.com/page.html and I have ...
15
votes
4answers
8k views

Include relative files in PowerShell

I would like to include script files with such pseudo syntax: Include '.\scripA.ps1' But the only thing I have found is some thing like this: $thisScript = Split-Path -Path ...
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
7answers
12k views

Ruby path management

What is the best way to manage the require paths in a ruby program? Let me give a basic example, consider a structure like: \MyProgram \MyProgram\src\myclass.rb \MyProgram\test\mytest.rb If in ...
14
votes
5answers
6k views

How can I get MSBUILD to evaluate and print the full path when given a relative path?

How can I get MSBuild to evaluate and print in a <Message /> task an absolute path given a relative path? Property Group <Source_Dir>..\..\..\Public\Server\</Source_Dir> ...
12
votes
6answers
5k views

How do I 'use' a Perl module in a directory not in @INC?

I have a module in the parent directory of my script and I would like to 'use' it. If I do use '../Foo.pm'; I get syntax errors. I tried to do: push @INC, '..'; use EPMS; and .. apparently ...
11
votes
2answers
1k views

Is the HTML <base> tag also honored by scripting and CSS?

The base HTML element provides a base for relative URIs in the HTML. Must JavaScript and CSS also honor it for relative URIs issued in them: E.g. JavaScript: location.href = "mypage.htm"` CSS: ...
11
votes
4answers
726 views

In C#, how do I combine more than two parts of a file path at once?

To combine two parts of a file path, you can do System.IO.Path.Combine (path1, path2); However, you can't do System.IO.Path.Combine (path1, path2, path3); Is there a simple way to do this?
11
votes
7answers
2k views

~/ equivalent in javascript

any smart way of doing a "root" based path referencing in javascript just the way we have ~/ in asp.net ?
9
votes
3answers
11k views

iPhone dev: load a file from resource folder

I'm writing an iPhone app with a UIWebView which should display various html files I have in the app resource folder. In xcode my project overview, these html files are displayed like this: dirA ...
9
votes
3answers
7k views

Should I use Url.Content() or ResolveUrl() in my MVC views?

When building code like this: <script type="text/javascript" src="<%=ResolveUrl("~/js/js.js")%>"></script> or <input type="image" ...
9
votes
1answer
3k views

Determining application path in a Python EXE generated by pyInstaller

I have an application that resides in a single .py file. I've been able to get pyInstaller to bundle it successfully into an EXE for Windows. The problem is, the application requires a .cfg file ...
8
votes
4answers
6k views

Rails redirect with https

I'm maintaining a Ruby on Rails site and I'm confused as to how to perform redirects to relative URLs using the https protocol. I can successfully create a redirect to a relative URL using http, for ...
8
votes
6answers
12k views

Using Server.MapPath in external C# Classes in ASP.NET

I'm trying to get the absolute path of certain files in a C# class. Server.MapPath works great of course for ASPX and their code-behind pages, but that doesn't exist in another class file. I tried ...
8
votes
3answers
3k views

How to Relocate Visual Studio project (.sln) file

I would like to move the Visual Studio solution (myProject.sln) file into a folder. The problem with doing this is that all the relative paths in the project will break, how can you relocate the ...
8
votes
6answers
29k views

How does relative file path works in Eclipse

So my 2009 new years resolution is to learn Java. I recently acquired "Java for Dummies" and have been following along with the demo code in the book by re-writing it using Eclipse. Anyway, every ...
7
votes
3answers
1k views

Getting relative path from absolute path in PHP

I noticed that there're some similar questions about this problem when I typed the title,but they seem not be in PHP.So what's the solution to it with a PHP function? To be specified. ...
7
votes
2answers
3k views

ASP.Net C# ResolveClientUrl inside Class

I have the following code: public class NavigationPath { private string menuItems = "<li>" + "<a href=\"#\">home</a>" + ...
7
votes
3answers
3k views

PHP: How to resolve a relative url

I need a function that given a relative URL and a base returns an absolute URL. I've searched and found many functions that do it different ways. resolve("../abc.png", ...
7
votes
4answers
7k views

Visual Studio: Relative Assembly References Paths

When adding a reference to an assembly located within the solution directory, is there any way to add it relatively, so that when checked in and out of a repository it is referenced in projects ...
7
votes
6answers
2k views

What does the dot-slash do to PHP include calls?

A. What does this do? require ("./file.php"); B. in comparison to this? require ("file.php"); (Its not up-one-directory.. which would be) require ("../file.php");
6
votes
2answers
623 views

How to get server path of physical path ?

I want to convert this physical path "C:\bla\bla\Content\Upload\image.jpg" to server path like "/Content/Upload/image.jpg". How can i do that ?
6
votes
2answers
3k views

IIS virtual directory and ASP.NET directory paths

The problem I'm running into the typical virtual-directory dilemma in that you have some paths on your ASP.Net application and you deploy the app in a IIS virtual directory. Then all paths relatives ...
6
votes
2answers
4k views

Relative paths in Python

I'm building a simple helper script for work that will copy a couple of template files in our code base to the current directory. I don't, however, have the absolute path to the directory where the ...
5
votes
4answers
90 views

PHP: Absolute vs. relative paths

If I use absolute paths, I can't move the whole directory to a new location. If I use relative paths, I can't move individual files to new locations. What's the solution here? Do you set up a config ...
5
votes
1answer
63 views

Absolute (“/foo”) and relative (“../foo”) file names. What is the “foo” category called?

There are three types of file names First (rooted below some kind of "current working directory") ../foo ./foo bar/foo # really in this group? And (rooted in an absolute path, independent of the ...
5
votes
2answers
137 views

Tool to detect non-dotted relative imports in Python?

It's considered bad Python to use imports like this: import my_module When you are doing a relative import and this would work: from . import my_module Is there a tool that can detect these ...
5
votes
7answers
602 views

Asp.Net single control render for AJAX calls

I'm trying to implement something similar to this or this. I've created a user control, a web service and a web method to return the rendered html of the control, executing the ajax calls via jQuery. ...
5
votes
3answers
291 views

Which directories does PHP check when including a relative path with include()?

It's very odd,has anyone ever sum up with a conclusion yet? Sometimes it checks the directory of the included file,too. But sometimes not. D:\test\1.php <?php include('sub\2.php'); ...
5
votes
3answers
2k views

Preferred way to include relative reference to JavaScript in VS 2008 nested Masterpage

Our base Masterpage has something like the following <head runat="server"> <title></title> <script type="text/javascript" src="<%= ...
4
votes
2answers
559 views

What does a dot mean in a URL path?

In a question regarding a jQuery Ajax problem, the asker was trying to use a . in the beginning of a relative URL. I advised him to remove it, but have no idea what a dot actually does there. His ...
4
votes
2answers
482 views

Mercurial subrepo and relative path

I have a project, which I have a bitbucket repository for, and it is dependent on another project that I incorporate as a subrepo. Now, I don't have push access to the subrepository, nor do I want or ...
4
votes
6answers
924 views

How to get a path from a directory in a C# console application?

Say I have this file structure Soultion-> Folder1 -> FileIwant.html So this could be something like C:\Soultion\Folder1\FilterIwant.html Now I need to read this file into my application. I can't ...
4
votes
4answers
534 views

Accessing JAR resources

I have a jar file with resources (mainly configuration for caches, logging, etc) that I want to distribute. I'm having a problem with the relative paths for those resources, so I did what I've found ...
4
votes
1answer
237 views

VS 2008 — Using Relative paths in Build Properties

Long story short, I have a test project file (C# project) that contains the NUnit assemblies. When I hit F5, the build properties tell the project to launch NUnit and run the appropriate tests. ...
4
votes
1answer
282 views

How do I convert a relative path to a fully qualified path in C# / .NET?

Let's say I have a file name defined as "..............\bin\prices.xls", is there a simple way to convert that to a fully qualified path (one that includes the Drive letter, colon and all folders to ...
4
votes
11answers
4k views

Why is Magento 1.4 including javascript files by filesystem path?

I am in the process of testing a Magento 1.3 site using Magento 1.4. I am seeing very weird and inconsistent behavior. Instead of including the URL of my javascript files, Magento is creating tags ...
4
votes
4answers
5k views

Ant: How to strip the basedir from an absolute path to get a relative path?

In the build.xml of my project I have a property defined: <property name="somedir.dir" location="my_project/some_dir"/> The value of "${somedir.dir}" will be an absolute path: ...
4
votes
7answers
533 views

Unix paths: officially work in Python for any platform?

Can all paths in a Python program use ".." (for the parent directory) and / (for separating path components), and still work whatever the platform? On one hand, I have never seen such a claim in the ...
4
votes
5answers
7k views

Absolute path & Relative Path

What's the difference between absolute path & relative path when using any web server or tomcat?
4
votes
2answers
6k views

In Visual Studio how to give relative path of a .lib file in project properties

I am building a project using Visual Studio. The project has a dependency on a lib file generated by another project. This project is there is the parent directory of the actual project I am building. ...
3
votes
1answer
57 views

php include statement unable to open stream to file in directory above current directory

I am trying to include a file in a different directory using a relative file path however I keep getting the error: failed to open stream: No such file or directory The path of the file calling the ...
3
votes
1answer
36 views

Is there an easy way to find the path route from one directory to another VB.NET

Given that I have a file in path: C:\Applications\General Utils\Assembly1\Assembly1\Bin\Debug\Assembly1.dll and I am working in the following path: C:\Applications\Under Development\App1\App1\ ...
3
votes
2answers
90 views

Why is '.' a hard link in Unix? [closed]

I've seen many explanations for why the link count for an empty directory in Unix based OSes is 2 instead of 1. They all say that it's because of the '.' directory, which every directory has pointing ...
3
votes
2answers
205 views

relative path in stylesheets within asp.net mvc areas

I have a project with the current structure My Project /Content /Controller /View /Model /Areas /Area1 /View /Controller /Model /Area2 /View ...
3
votes
1answer
136 views

Will this method of making relative paths work?

Since .NET doesn't include an API to make relative paths, I've used Uri's MakeRelativeUri method instead. This works, but I've encountered several cases in which it doesn't due to the fact the Uri is ...
3
votes
2answers
90 views

jquery short hand for parent, children

i keep on having to affect elements relevant to other elements but my methods see a little amateur! ie to // <div> <div> <div> <ul> matched item where script is called from ...

1 2 3 4 5 10