Relative-paths are URI or directory links to resources that refer to a location relative to the current path.

learn more… | top users | synonyms

1
vote
1answer
17 views

How to import this packages? Relative import in python3.3

I'm trying to make this work on my machine (arch, using gnome 3). I think that the setup went OK (I replaced all the print commands) but when I run chemlab on terminal I get an error telling me that ...
0
votes
0answers
17 views

Jquery datepicker setting button image using relative image path

There was a similar question that I found on Stack overflow but it did not clearly explain the answer. The Question is how do I use a relative path for buttonImage so that I can use a custom image for ...
0
votes
1answer
14 views

wordpress is saving absolute links and not relative

I am developing a wordpress site and I have 3 different environments. dev, staging and production. each is a different subdomain. When I export the database to .sql file. I see that the wordpress ...
0
votes
1answer
15 views

Update links when copy a page tree in Confluence

Shortly, I've been using the Copy Page Tree plugin in Confluence. The actual functionality is exactly what I need. But I'm having troubles with the fact that the links are not updated. When I create ...
0
votes
0answers
18 views

Insert a base tag in the right before the closing head tag

Im working with simple HTML dom and would like to fix the issue of relative URL's by implementing a base tag in the head of my document. I have Googled and searched on Stackoverflow but al I can find ...
0
votes
1answer
83 views

How to reference a .css file from a view (.jsp) in Spring MVC?

This is the structure: (they're in the same directory!) Directory |-view.jsp |-stylesheet.css When I do <link href="stylesheet.css" rel="stylesheet" media="screen"> The .css file does not get ...
0
votes
1answer
64 views

java read file from relative path in project and .jar

I tried that: public class FilePath { public File return_path () { URL url = getClass().getResource("file.txt"); File file = new File(url.getPath()); return file; ...
0
votes
4answers
42 views

relative paths (cant figure out)

I have a image at location C:\Users\ali\Desktop\Folder\bin\Customer\latest\data\help\pic.png"; I want to use this image in file located at ...
0
votes
0answers
18 views

relative paths between two files (old stackoverflow examples not working) [duplicate]

I have a image at location C:\Users\ali\Desktop\Folder\bin\Customer\latest\data\help\pic.png"; I want to use this image in file located at ...
0
votes
1answer
37 views

Set up correct relative path across my site and in php-include functions

I have a basic question and since I am a noob with php it is difficult to dig through the thousands of questions you already answered...So I ask you for further help, sorry... I just need to recall ...
-3
votes
1answer
42 views

Change relative url with CURL [duplicate]

I'm trying to scrape some websites using CURL. In order to change the relative URL's I have inserted this: $curl_scraped_page = preg_replace("/<head>/i", "<head><base href='$url' ...
0
votes
2answers
76 views

Relative paths using requirejs in combination with Typescript and AMD

There are several Javascript files, organized in folders Scripts/folder1, Scripts/folder2, ... With requirejs.config.baseUrl a folder is defined as the default, for example Scripts/folder1. Then in ...
1
vote
1answer
56 views

How to get to a file by passing relative path in java?

I am trying to understand "How to get to file by passing relative path of a file or folder?" . Here is the example: CODE: public class somex { public static void main { String ...
0
votes
3answers
62 views

C++ #include relative path

Is it even possible that relative path is correct, but that I nevertheless get the compilation error: 2>src\wfbuilderapp.cpp(15): fatal error C1083: Cannot open include file: ...
2
votes
2answers
108 views

Which path should I use when calling a java properties file?

Basically I have the model of my project set up this way: ModelFolder -----src -----bin, etc. -----PropertiesFolder1 --------File1.properties --------File2.properties, etc. -----PropertiesFolder2 ...
0
votes
0answers
17 views

Trying to open a text file from within my python script that exists in in a different directory than the current working directory

I have a script which needs to read some names and values from a text file that exists on a different path than the python script. Both paths look something like this: ...
2
votes
1answer
49 views

Enforce trailing slash in Rails Routing

Adding a trailing slash in your links is easy enough with {:trailing_slash => true}, but this doesn't account for if a user types in a non-slashed url. Is there a way to enforce trailing slashes via ...
3
votes
1answer
51 views

Create relative path using boost

I am trying to create relative paths using boost. My initial plan was: string base_directory; // input boost::filesystem::path base_path; string other_directory; // input boost::filesystem::path ...
1
vote
1answer
40 views

relative path or absolute path

in my localhost xampp i have folder inside htdocs , named "google" , and in this folder i have 2 files named is client.php and server3f.php . so i gave this path in client.php to connect with my ...
1
vote
7answers
85 views

Java workspace and file path

I have a probably easy to solve problem. I am having a folder in my project and want to get it using the relative path: new File("/folder") this gives me FileNotFoundException if I try like ...
-1
votes
1answer
43 views

PHP: A working file doesn't find other files after inclusion?

first of all: Sorry for the title. If you can make something up to replace it, please do it since I just really didn't know how to name my problem in the first place. That said, there could very ...
0
votes
4answers
57 views

How to access the file using the relative path

I've got the following folder hierarchy in my web application. I'm using the following relative path to access my CSS files but the layout doesn't detect the CSS. There are two layouts but I'm ...
0
votes
0answers
28 views

JS not loading on Htaccess Rules

I am loading js for particular page using Require Js. I pass the path to JS in a variable <script data-main="js/global" src="js/vendor/require.js" type="text/javascript"></script> ...
0
votes
0answers
41 views

How to use Doxygen from command line with relative paths in configuration file?

I have a problem creating the documentation for a doxygen configuration file. I call the config file with this command: doxygen "%~dp0doc\pdf_user\DSCTest2Certificate_user.doxyfile". The path returned ...
0
votes
3answers
84 views

Playing wav file which has relative path inside project

I have some problems with relative paths and reproduction of wav files. I have this simple code which works perfectly: SoundPlayer player = new SoundPlayer(); player.SoundLocation = ...
0
votes
1answer
33 views

Curl and relative path in <head>

Im ising this script to scrape a website: <?php $url = "http://www.nu.nl"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $curl_scraped_page = curl_exec($ch); ...
0
votes
3answers
77 views

PHP - make paths relative when including file

In a site root I have the following folders and files: File includes/scripts.php includes links to all css/js files needed for the rest of the pages to function. When including scripts.php from any ...
0
votes
1answer
40 views

JRebel relative path for deployed war

I've recently started using JRebel with Eclipse and Jboss and its working perfectly fine for me. Its deploying changed files to D:/Workspace/Project/build/classes as I've mentioned the same in ...
0
votes
1answer
237 views

Windows forms ImageList - Add images with Relative path - No file copy

I'm trying to add images to my tree nodes (ImageList.Add()), but just can't figure out a nice way of doing it. I've read from MSDN help I should use System.Drawing.Image.FromFile(path). But cannot ...
2
votes
2answers
89 views

Relative path of my Java server

I'm trying to create a file in my server. I have sent a image, and I want to create that Image in a folder of my server, but with relative path. String filePath = ...
0
votes
1answer
34 views

using / to indicate root directory

This is probably a stupid question, but its hard to search for effectively. I am have defined the following: <img src='/images/image_name.ico' /> This properly creates the path to the root ...
0
votes
1answer
11 views

Is it possible to link up more than one step with relative paths?

Here is an example of what I'm looking to do: Link from a page with the path http://mysite.com/lorem/ipsum/ to http://mywebsite.com/ using a relative path. My first thought was to use this: <a ...
1
vote
1answer
66 views

How to set a Relative path in Rollup Macro

I am using a Macro to rollup a bunch of excel files in a folder, the path is set like this: MyPath = "C:\Users\Tim\Desktop\XXX\Compiled" I need to set a relative path as the folder XXX keeps ...
0
votes
3answers
75 views

How to adjust relative & absolute paths when exporting eclipse java project to executable jar?

Ok so I have a project in eclipse called SWT. In one of the classes in this project there is a code: public static String rpath = "..\\SWT\\src\\data.txt"; public static String path = new ...
0
votes
1answer
52 views

Relative path to parent directory in '/etc/profile' file of portable git on MS Windows

How can I specify relative paths in Git's /etc/profile file (specifically, a relative path to the parent directory of the one that git.exe is called from)? Background I'm a huge fan of making your ...
0
votes
2answers
65 views

PHP: 'Intelligent' absolute paths vs relative path

I'm writing a Router class for a library of mine. This class will keep the locations of some paths, but I'm wondering if I should use 'intelligent' absolute paths, relative paths or both (for this ...
0
votes
2answers
38 views

Finding absolute path

I am looking at code new FileInputStream("config.properties"). I have the same file "config.properties" in multiple places in my project(doing windows file search) and I am now confused as to which ...
0
votes
2answers
23 views

Setting up local virtual machine the same as live server

I used to develop locally using XAMPP but am now switching to a VMware virutal machine running Ubuntu for my local development. Everything is set up and running a local version of the site fine apart ...
0
votes
3answers
335 views

Correct File Path within C# Console Application

Can someone please tell me how I can get the correct file path for the file data.xml? Here is where the file sits: Here is my C# code that is checking to see if the file exists for the supplied ...
0
votes
1answer
55 views

Changing relative URLs of Javascript files

I'm screen scraping using Curl like this: <?php $url = "http://www.bbc.com/news/"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $curl_scraped_page = curl_exec($ch); ...
0
votes
2answers
50 views

VS2010 doesnot pick up file from resources folder

I am required to parse a text file in my VS project in mfc in c++. The text file is supposed to be a part of the entire exe product. For that purpose, I placed the text file in my resources folder and ...
0
votes
0answers
17 views

Why do relative paths not work in CMS?

Why do relative paths not work in popular basic Content Management Systems which use "editable" class tagging? It's weird that every time I edit a page in the CMS all my styles and jS are killed ...
1
vote
1answer
162 views

Relative path of images in database depending on folder in solution

I have an .aspx page called editprofile which can be found inside of my ~/Account/ folder . The page itself allows users to upload a new user avatar, change their details etc. When the image is ...
0
votes
2answers
26 views

Want to include a file from different files, that include a file

The title maybe sounds a little weird, but let's say I have file A, and B. A and B have both include_once("includes/includes.php"); And in Includes.php there's this line: ...
1
vote
2answers
48 views

How do I relative reference a library in Eclipse?

I have been asking a lot of questions about LTI-CIVIL and I have figured a solution. For that, I need to relative reference the native library for LTI. Is it possible to relative reference a library ...
0
votes
4answers
847 views

How to set relative path to Images directory inside C# project?

I am working on C# project i need to get the images from Images directory using relative path. I have tried var path = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + ...
0
votes
1answer
43 views

How to access a folder above a running jar

Background: i have a running .jar called main.jar in the location C:\Program Files\folder\files\bin\main.jar on Windows. I also have a properties file in the same location named p.properties. At the ...
0
votes
1answer
157 views

sass/scss @import when relative path is symlink

We have trouble with @import of scss files from another bundle in symfony2. The source code (hg repo) lives in /files/... in machine A. In devel, apache serves from /var/www/... in machine A, ...
-1
votes
0answers
19 views

Can we provide relative path to a file while using LinkedResource in C#? I am getting error every time i executed the method [duplicate]

I am using LinkedResource in C# to embed images to HTML when i give absolute path to the file it works fine. But whenever i give relative path it says URI formats are not supported. Here is how i ...
0
votes
1answer
3k views

Trying to create excel vba macro that opens new sheet, renames it according to value of relative cell in original sheet

I have a master list of contacts. I'm trying to create a macro that uses a relative reference point to: Open a specific sheet template Give it a name that = value of ActiveCell or first cell ...

1 2 3 4 5 17