Tagged Questions
The absolute-path tag has no wiki summary.
39
votes
10answers
54k views
How can I list files with their absolute path in linux? [closed]
I want to generate recursive file listings with full paths
/home/ken/foo/bar
but as far as I can see both ls and find only give relative path listings
./foo/bar (from the folder ken)
It seems ...
27
votes
4answers
10k views
ASP.NET MVC - Find Absolute Path to the App_Data folder from Controller
What is the correct way to find the absolute path to the App_Data folder from a Controller in an ASP.NET MVC project? I'd like to be able to temporarily work with an .xml file and I don't want to ...
23
votes
2answers
9k views
Get filename and path from uri from mediastore
I have an onActivityResult returning from an mediastore image selection which I can get a URI for an image using the following:
Uri selectedImage = data.getData();
Converting this to a string ...
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 ...
16
votes
1answer
11k views
Asp.Net Absolute Path of a URL
To make it simpler for a webapp to share files with another app on a different server, I'm using a base href tag in my master page. As many people have discovered, this breaks webform paths. I have ...
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 ...
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>
...
6
votes
3answers
259 views
How to determine the directory in which a running Haskell script or application lives?
I have a Haskell script that runs via a shebang line making use of the runhaskell utility. E.g...
#! /usr/bin/env runhaskell
module Main where
main = do { ... }
Now, I'd like to be able to ...
6
votes
3answers
3k views
How get file path from std::ifstream in c++
I open a file using std::ifstream.
I may open file using relative path (file.txt) or absolute path (C:\test\file.txt).
As I am passing a string as the file name, I dont know whether it is relative ...
6
votes
3answers
19k views
Relative instead of Absolute paths in Excel VBA
I have written an Excel VBA macro which imports data from a HTML file (stored locally) before performing calculations on the data.
At the moment the HTML file is referred to with an absolute path:
...
5
votes
4answers
93 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
3k views
Is there a path similar to file:///android_asset/ that points to the apps directory?
I'm using a WebView to open some files saved to the app. Is there a way to link to the app's directory where files saved at runtime would be, in a similar way that file:///android_asset/ does? By ...
5
votes
1answer
539 views
getting the absolute path of a <img/>
Using javascript, is there a standard way to get the absolute path of an image, as
var src= img.getAttribute("src");
only returns the @src tag as it was declared in the HTML
thanks,
Pierre
5
votes
4answers
2k views
What is my script src URL?
Is there a simple and reliable way to determine the URL of the currently-executing JavaScript file (inside a web page)?
My only thought on this is to scan the DOM for all the script src attributes to ...
4
votes
2answers
985 views
Skip directory in msdeploy
I have a msdeploy in my nant script(Team City) that is working except it is copying some folders that I do not want to copy. What command will skip these directories? I tried:
<arg ...
4
votes
1answer
493 views
How to get absolute path from path with system path variables?
Is there an easy way to translate a path with system path variables to an absolute path?
So %ProgramFiles%\Internet Explorer\hmmapi.dll becomes C:\Program Files\Internet Explorer\hmmapi.dll
I like ...
4
votes
4answers
828 views
What Perl module(s) do I use to obtain an absolute path (including filename) from a relative one on Windows?
I can only imagine I'm not searching correctly; this seems like an obvious question to be asked here. My apologies if this is a duplicate.
I'm writing a Perl program that will take a filename as a ...
4
votes
1answer
2k views
Java: How to find out if path is absolute regardless of the OS
Is there anyway in Java to find out if the given path is absolute or not regardless of the platform the program is currently running. So, what I want is probably something like the following example:
...
3
votes
1answer
50 views
Qt SQLite database without absolute path
Is there a way to reference the database.sqlite file without knowing the absolute path?
_db = QSqlDatabase::addDatabase("QSQLITE");
_db.setDatabaseName("/the/path/i/dont/know/database.sqlite");
I ...
3
votes
1answer
359 views
how to dynamically controll paths in static CSS files with MVC code igniter project
I'm creating a website/codeigniter-project that uses views which link to external CSS files.
Everywhere throughout my project/web-page's views I can control the url paths of images, links, etc by ...
3
votes
2answers
1k views
Android - get path of resource
My question is: is it possible to get the absolute path of a resource (in a subdirectory of the res/ folder) in Android?
Most of the answers I see to this question on google suggest getting a file ...
3
votes
3answers
662 views
Getting an anchor element's absolute URL with jQuery
Given an anchor element (with something like $("a:first")), how do you get the absolute URL that the anchor points to?
3
votes
3answers
329 views
Start rails server with absolute path
I'm trying to make a script to run my rails dev server, but the absolute path doesn't want to work. This is what I've got;
/home/me/dev/app/script/rails server >> /var/log/rails.output.log
It just ...
3
votes
2answers
2k views
Absolute to relative path (Eclipse, JSP)
I am making a web application in Eclipse (JSP) and use Tomcat as a server (integrated into Eclipse). I have to create the object below and specify the path to configuration file. This absolute path is ...
3
votes
2answers
851 views
how to find the target file's full(absolute path) of the symbolic link or soft link in python
when i give
ls -l /etc/fonts/conf.d/70-yes-bitmaps.conf
lrwxrwxrwx <snip> /etc/fonts/conf.d/70-yes-bitmaps.conf -> ../conf.avail/70-yes-bitmaps.conf
so for a symbolic link or soft link, ...
3
votes
3answers
3k views
How to get the file-path of the currenctly executing javascript code
I'm trying to do something like a c #include "filename.c", or php include(dirname(FILE)."filename.php") but in javascript. I know I can do this if I can get the URL a js file was loaded from (e.g. the ...
2
votes
3answers
31 views
Could not find images in .NET web application
I keep some html content of the pages to the database. According to situation I get the html of content from the database and put it to the page.
Example content:
<p>
Test Content
<img ...
2
votes
2answers
29 views
WCF service: failed to get a directory on server using absolute path
I wrote a WCF service with a function that using absolute path to get directory on server.
it works well in debugging mode of VS2010 which triggers a temporary accessible service.
Then I deployed ...
2
votes
3answers
60 views
Get running file name in Java?
Is it possible to get the file name which is being executed. Like e.g. If i am running a Jar file, and inside i want to add code functionality that can detect the file name so that if this jar is ...
2
votes
1answer
40 views
Relative img src is resolved as absolute… what am I missing?
In my project users can enter the URL of a website and the system goes and fetches all images from this website. Because the src of the image can be relative, the system "normalizes" it, so:
an ...
2
votes
2answers
112 views
Does runat=“server” img scr=~/img/ex1.png" work in ASP or only ASP.net | Relative to Absolute path in include
so: I've read 8+ stackover flows on relative to absolute. A few sites and went to MS page on this...
however when I've tried and had not success. Then I researched more and wonder solutions I ...
2
votes
2answers
1k views
Android: absolute location of External sd-card
I have a very simple question but so far I am unable to find an answer of this question. "Is there any way of finding the absolute path of INTERNAL STORAGE DIRECTORY and EXTERNAL STORAGE ...
2
votes
1answer
286 views
How to change the location of a grouped (localization) file from an absolute to a relative path in XCode 4?
I'm having problems with making all file location paths relative in XCode 4.
I have multiple infoPlist.strings and CustomLocalizable.strings (for different languages) grouped together (XCode does ...
2
votes
3answers
136 views
Define root path one time at one place
I like to refer images, css and php files using their absolute path, that is starting from root, with an address beginning with "/".
I need to include php files that are all located at ...
2
votes
2answers
134 views
PHP concatenation of paths
Is there a PHP internal function for path concatenation ? What possibilities do I have to merge several paths (absolute and relative).
//Example:
$path1="/usr/home/username/www";
...
2
votes
1answer
322 views
jQuery Mobile Beta absolute/relative URL paths
I'm trying to switch our mobile site from the jQuery Mobile Alpha to the latest Beta version. The problem is with the way the Beta handles URLs for dynamic pages.
Our live Alpha 4 site loads the ...
2
votes
2answers
134 views
Absolute path without symlink resolution / Keep user in home directory
Is there a way in PHP how to determine an absolute path given a relative path without actually resolving symlinks? Something like the realpath function but without symlink resolution.
Or ...
2
votes
2answers
511 views
How to get Ruby Dir#glob to return basenames, not absolute_paths?
FakeProfilePictures::Photo.all_large_names_2x (defined below) returns an array of absolute path names, but when I do Dir["picture_*@2x.*"] from the correct directory in irb, I only get the basenames ...
2
votes
4answers
360 views
php - header file - relative paths problem
I have a web application in php. I have a header.php file where I have the opening html tag, meta data, css,js file includes.
I have multiple folders in this application. I have given relative paths ...
2
votes
2answers
273 views
PHP: Translate relative img src urls to absolute
I have fetched an HTML page using cURL into a string and loaded it up in a DOMDocument. There I can get all the img tags and their source attributes. My problem now is... how can I make these URLs ...
2
votes
2answers
626 views
c sharp reference dll absolute to relative
I have compiled my project.
some of the project added Dlls by reference have an absolute reference.
When I try to run my project on another machine it looks for the Dlls from the original project ...
2
votes
5answers
965 views
Performance: Absolute vs. Relative URLs
What's faster? Hot linking (inline linking) to an absolute URI or hosting the resource yourself and using a relative URI?
In his tutorial on how to style HTML5 elements in Internet Explorer, Remy ...
2
votes
2answers
446 views
Relative path or absolute path and how to set up in PHP
I have a site that I am working on and I am trying to go to the main directory of the site and I do not know how to set that up. What I am trying to do is include _inc/config.php through ...
2
votes
2answers
357 views
How to determine absolute path (if any) of a loaded Class?
Is there a (compatible, if possible) way to determine the absolute path of a loaded Class?
Of course, this is not always possible (if you think of dynamically created classes), but
if the loaded ...
2
votes
3answers
121 views
Linking to CSS/JS file using the websites absolute URL
I am wondering what the best method is. E.g.
<script type="text/javascript" src="<%= GetBaseURL() %>Scripts/jquery-1.4.1.min.js"></script>
renders
<script ...
2
votes
3answers
1k views
Converting relative path into absolute path
Not sure if its a duplicate. Given the relative path, how do i determine absolute path using a shell script?
Example:
relative path: /x/y/../../a/b/z/../c/d
absolute path: /a/b/c/d
2
votes
4answers
336 views
MSBuild clean directory string
I have a property in MSBuild to represent the directory above the MSBuildProjectDirectory:
<PropertyGroup>
<BuildDir>$(MSBuildProjectDirectory)\..</PRSBuildDir>
...
2
votes
4answers
744 views
Relative to absolute paths in HTML (asp.net)
I need to create a newsletters by URL. I to do next:
Create a WebClient;
Use WebClient's method
DownloadData to get a source of page
in byte array;
Get string from source-html byte
array and set it ...