relative-path Questions
3
Solved
I am running into an issue with my Robot Framework test suites. I have a simple test structure like this:
robotframework
|_foo
|_tests folder
|_pages folder
|_firefoxTestProfile folder
|_...
...
Amalbergas asked 14/10, 2015 at 23:49
2
Solved
Starting Node.js with Upstart, when trying to access files within Node.js it cannot access them without using the full path. I need it to use the working directory.
start on startup
stop on shutdo...
Demetra asked 12/2, 2013 at 1:21
0
Situation:
3rd party CSS files have to be used in this project.
the CSS files use relative paths in image urls (e.g. url('../images/logo.png')
these files are constantly being udpated by the prov...
Drye asked 8/5, 2018 at 9:0
2
Solved
I need determinate this path in jquery , actually i have one file called functions.js and inside of this one function for load url with jquery
The problem it´s the js load in the index of website ...
Autonomic asked 16/7, 2013 at 4:19
9
Solved
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 ...
Eustoliaeutectic asked 27/7, 2009 at 19:39
6
Solved
I'm trying to make a program that counts the number of lines of a file, when I try to pass the absolute path to the fopen function, is simply tells me that is not found, here is my code:
#include ...
Corpuz asked 13/7, 2012 at 7:38
2
Solved
As far as I can see using $pwd and using ./ in PowerShell gives the same result.
Are they the same or is there a difference?
Gloomy asked 22/2, 2018 at 8:41
2
My app is going to be used on multiple machines, and it may be located in a different place each time. For example, the home route may be at any of the following locations:
localhost:9000/home
lo...
Knit asked 19/1, 2018 at 18:29
3
Solved
I have a list of URLs that our users have entered for websites of various clients... I am loading this list from the server into a grid for the users to see... I made the URLs clickable by wrapping...
Preemption asked 9/2, 2012 at 16:54
14
Solved
Is there a way in a Windows batch script 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 ...
Salomone asked 29/10, 2009 at 18:58
2
For reference. The absolute path is the full path to some place on your computer. The relative path is the path to some file with respect to your current working directory (PWD). For example:
Abso...
Vespertine asked 27/6, 2017 at 3:54
2
Solved
I have an Image in my application and I have a picture in my WinForms.
public static string Correct_Icons = @"C:\Users\xyz\Documents\Visual Studio 2008\Projects\FileShareMgmt\FileShareMgmt\Res...
Sardella asked 28/6, 2011 at 19:7
1
I have url like this:
http://example.com/path/to/css/../../images/test.jpg
which i want to convert to absolute like the following:
http://example.com/path/images/test.jpg
I am looking for a mod...
Isosceles asked 21/8, 2017 at 13:31
2
I know that there are lots of questions about the same import issues in Python but it seems that nobody managed to provide a clear example of correct usage.
Let's say that we have a package mypacka...
Biannulate asked 28/11, 2011 at 16:49
2
Solved
I am trying to build a golang program which uses a static lib (.a file)
the directory struct for my project as below
└─testserver
├─bin
├─pkg
└─src
├─logging
└─testserver
├─libtest.a
└─tes...
Flagging asked 20/1, 2015 at 4:36
6
Solved
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 e...
Plaint asked 12/1, 2009 at 23:6
3
Solved
I am requesting the source code of a website like this:
<? $txt = file_get_contents('http://stats.pingdom.com/qmwwuwoz2b71/522741');
echo $txt; ?>
Bu I would like to replace the relative l...
Corse asked 17/3, 2012 at 17:36
2
Solved
I am trying to set up roundcube / phpldapadmin / ... with Nginx on relative urls, e.g.:
example.com/roundcube
example.com/phpldapadmin
The source are in the following folders:
/var/www/roundcube
/...
Subway asked 7/2, 2016 at 20:54
1
Solved
I'm writing a script to compile a code. The sources are in many different directories. I'm going to release the source and I want it to be compiled by many other people. Thus in my script I use rel...
Phobos asked 6/5, 2017 at 17:45
1
Solved
I am trying to open a Help.txt file in windows Forms using a linkLabel. However unable to convert from absolute to relative path.
First, I try to get the absolute path of the exe file. Which is su...
Sardanapalus asked 10/3, 2017 at 22:19
3
Solved
I'm starting learning Ruby, one thing that I don't understand, why relative path for require directive doesn't work in ruby. It's something that works almost in every scripting language that I now ...
Jerrybuilt asked 14/8, 2014 at 17:39
7
Solved
How to get the absolute path for a given relative path programmatically in Linux?
Incase of Windows we have the _fullpath() API. In other words, I mean what is analogous API to _fullpath of Window...
Tripersonal asked 26/2, 2010 at 13:17
12
Solved
Any smart way of doing a "root" based path referencing in JavaScript, just the way we have ~/ in ASP.NET?
Mossman asked 21/5, 2009 at 14:16
5
Solved
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?
Aglimmer asked 3/1, 2010 at 20:15
3
Solved
I currently writing a project in visual studio in c#.
the project full path is:
"C:\TFS\MySolution\"
I have a file that I need to load during the execution. lets say the file path is
"C:\TFS\My...
Vallejo asked 6/12, 2016 at 11:42
© 2022 - 2024 — McMap. All rights reserved.