active questions tagged path - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:08:11Z http://stackoverflow.com/feeds/tag/path http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846450/cross-platform-library-for-manipulating-windows-paths 2 Cross-platform library for manipulating Windows paths? Magnus Hoff 2009-12-04T11:41:18Z 2009-12-10T14:37:36Z <p>I am writing a cross-platform application that needs to inspect and manipulate Windows-paths.</p> <p>Specifically, for the particular problem I am having now, I need to know if a path is absolute or relative.</p> <p>The current code uses <code>boost::filesystem::path</code> which of course works like a charm on Windows:</p> <pre><code>boost::filesystem::path the_path(the_path_as_a_string); if (!the_path.has_root_path()) { /* do stuff */ } </code></pre> <p>The problem with this approach is that <code>boost::filesystem::path</code> only has two modes: native and portable. This means that the Windows path grammar is unavailable when I compile under Linux (it is <code>#ifdef</code>ed out in the source). Hence, the path "C:\path" is considered absolute in Windows, but relative in Linux.</p> <p><hr></p> <p>Can you guys recommend a cross-platform C++ library that can inspect and manipulate Windows-paths?</p> <p><hr></p> <p>For now, the only Windows-path operation I will do is to check whether a path is absolute or not.</p> <p>The criterion for an absolute path is that it both contains a drive letter, and the path starts with <code>\</code>. An example of an absolute path under this criterion is <code>C:\path</code>. These are both examples of relative paths under this criterion: <code>C:path</code>, <code>\path</code>.</p> http://stackoverflow.com/questions/1880321/why-does-the-260-character-path-length-limit-exist-in-windows 1 Why does the 260 character path length limit exist in Windows? Jeffrey Cameron 2009-12-10T11:18:16Z 2009-12-10T11:56:37Z <p>I have come up against this problem a few times at inopportune moments:</p> <ul> <li>trying to work on open source Java projects with deep paths</li> <li>Storing deep Fitnesse wiki trees in source control</li> <li>An error trying to use Bazaar to import my source control tree</li> </ul> <p>Why does this limit exist? </p> <p>Why hasn't it been removed yet? </p> <p>How do you cope with the path limit? ... and no, switching to linux or Mac OS X is not a valid answer to this question ;)</p> http://stackoverflow.com/questions/1879052/c-connect-unc-path-with-credentials 0 C# -Connect unc path with credentials Andy 2009-12-10T06:36:23Z 2009-12-10T09:00:19Z <p>Hi,</p> <p>I have a UNC folder added in my machine using "Add Network Places" option in "My Network Places" (XP). I need to select the specific unc folder through my C# "folderBrowser Dialogue." However,as unc path is password protected. While selecting the same,how can I prompt for userCredentials. can anyone have thoughts on this...</p> http://stackoverflow.com/questions/1874373/alternative-ways-to-get-a-full-path-of-a-file 0 Alternative ways to get a full path of a file John 2009-12-09T14:47:28Z 2009-12-10T08:13:08Z <p>Is there any alternative way to get a full path of a file without using Path.GetFullPath method?</p> http://stackoverflow.com/questions/1878247/python-directory-searching-and-organizing-by-dict 0 Python directory searching and organizing by dict. Chuck 2009-12-10T02:14:46Z 2009-12-10T07:39:02Z <p>Hey all, this is my first time recently trying to get into the file and os part of Python. I am trying to search a directory then find all sub directories. If the directory has no folders, add all the files to a list. And organize them all by dict.</p> <p>So for instance a tree could look like this</p> <ul> <li>Starting Path <ul> <li>Dir 1 <ul> <li>Subdir 1</li> <li>Subdir 2</li> <li>Subdir 3 <ul> <li>subsubdir <ul> <li>file.jpg</li> <li>folder1 <ul> <li>file1.jpg</li> <li>file2.jpg</li> </ul></li> <li>folder2 <ul> <li>file3.jpg</li> <li>file4.jpg</li> </ul></li> </ul></li> </ul></li> </ul></li> </ul></li> </ul> <p>Even if subsubdir has a file in it, it should be skipped because it has folders in it.</p> <p>Now I can normally do this if I know how many directories I am going to be looking for, using os.listdir and os.path.isdir. However if I want this to be dynamic it will have to compensate for any amount of folders and subfolders. I have tried using os.walk and it will find all the files easily. The only trouble I am having is creating all the dicts with the path names that contain file. I need the foldernames organized by dict, up until the starting path. </p> <p>So in the end, using the example above, the dict should look like this with the files in it:</p> <pre><code>dict['dir1']['subdir3']['subsubdir']['folder1'] = ['file1.jpg', 'file2.jpg'] dict['dir1']['subdir3']['subsubdir']['folder2'] = ['file3.jpg', 'file4.jpg'] </code></pre> <p>Would appreciate any help on this or better ideas on organizing the information. Thanks.</p> http://stackoverflow.com/questions/693703/best-practises-for-locating-a-function-definition-in-php 2 Best Practises for locating a function definition in PHP chris 2009-03-28T22:55:29Z 2009-12-10T06:14:59Z <p>Is there a simple way to find the file path to where a function is defined? I currently use dreamweavers FIND in an entire directory. Would be nice to have something that doesnt require downloading the entire site tho.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1286217/document-directory-on-iphone-is-invalid 0 Document Directory on iPhone is invalid Joe Estes 2009-08-17T04:59:43Z 2009-12-09T21:00:02Z <p>I attempt to get the path of the document directory on the iPhone SDK with the following code:</p> <pre><code> NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); </code></pre> <p>I'm in distribution and not debug configuration. In debug a valid path is returned. Also I'm using iPhone OS 3.0</p> <p>Please help!</p> <p>Joe</p> http://stackoverflow.com/questions/1873949/php-find-a-remote-absolute-path 0 PHP find a remote absolute path Carvefx 2009-12-09T13:37:47Z 2009-12-09T16:10:50Z <p>Hi,</p> <p>I'm having a problem fetching the absolute URL of a remote image. What I'm doing right now is this:</p> <pre><code>foreach($html-&gt;find('img') as $e){ $path = parse_url($e-&gt;src, PHP_URL_PATH); $absolute = realpath($path); if($e-&gt;src==$path){ echo '&lt;img class="pic" src=' . $absolute . '/&gt;&lt;br/&gt;'; } } </code></pre> <p>This code has been written using the simple html dom project. The ideea is that I can't display images with a relative url in the original coding because they are not located on my server.</p> <p>So does anyone know how to resolve the absolute path of a remote image?</p> http://stackoverflow.com/questions/1871077/shortest-path-in-a-map 1 Shortest path in a map Sahil 2009-12-09T01:29:05Z 2009-12-09T01:53:10Z <p>I have designed a weighted graph using a normalized adjacency list in mysql. Now I need to find the shortest path between two given nodes. </p> <p>I have tried to use Dijkstra in php but I couldnt manage to implement it (too difficult for me). Another problem I felt was that if I use Dijkstra I would need to consider all the nodes, that may be perhaps very inefficient in a large graph. So does anybody has a code relating to the above problem? It would be great if somebody atleast shows me a way of solving this problem. I have been stuck here for almost a week now. Please help.</p> http://stackoverflow.com/questions/1865954/finding-a-file-path -1 Finding a file path emory430e 2009-12-08T10:03:38Z 2009-12-08T10:22:08Z <p>Which method of the File class can I use to return the absolute path of a text file whose name is already mentioned in the application. In other words, the name of the file or its relative path is not to be typed in by the user.</p> http://stackoverflow.com/questions/1846154/find-the-elements-children-of-a-path-wpf 0 Find the elements/children of a path wpf. np 2009-12-04T10:37:52Z 2009-12-07T09:38:55Z <p>I have a Parent Canvas which has mutiple paths. Each Path has a bunch of shapes inside it but all of them refer to ParentCanvas as their parent. When i loop through the children of the parentCanvas i would like to figure out which childElement falls in the boundary of each path. Just wondering if anyone has any suggestions.</p> <p>Another way to ask the same question: How to find if if the element is within the boundary of a path. </p> <p>Thanks N</p> http://stackoverflow.com/questions/1835400/ubuntu-9-10-path-var-lib-gems-1-8-no-such-file-or-dir 0 Ubuntu 9.10 PATH var/lib/gems/1.8 no such file or dir dombesz 2009-12-02T19:59:07Z 2009-12-07T07:42:10Z <p>Hi,</p> <p>I'm using ubuntu 9.10 and i cant see gems located in /var/lib/gems/1.8/gems , so i cant execute gems like rake for rails. When I write $PATH in the console I get:</p> <p>bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/dombesz/bin:/var/lib/gems/1.8/bin: No such file or directory</p> <p>I also tried to add to ~/.bashrc , export PATH=$PATH:/var/lib/gems/1.8/bin</p> <p>When I write gem list --local, shows only the gems located at ~/.gems dir.</p> <p>This problem started when I installed rubygems from source.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1857335/is-there-any-length-limits-of-file-path-in-ntfs 3 Is there any length-limits of file path in NTFS? sxingfeng 2009-12-07T01:44:34Z 2009-12-07T02:54:11Z <p>Why can not I create a deep path whose characters in path is more than 255 in NTFS File System? It seems a limits of FAT32, but also exist in NTFS? Can anyone provide some documents?</p> <p>Many Thanks!</p> http://stackoverflow.com/questions/938121/longest-path-in-java-code 0 Longest path in Java code emkrish 2009-06-02T06:18:06Z 2009-12-07T01:29:24Z <p>I want to obtain longest path in a given Java code. This code might be present in form of a graph. Are there any opensource tools/ APIs that obtain this info ?</p> http://stackoverflow.com/questions/1855859/curving-from-one-point-to-another 1 Curving from one point to another unknown (yahoo) 2009-12-06T16:53:55Z 2009-12-06T18:03:18Z <p>I have tiles that are in random spots, and they wind up at x',y' (to make a nice 2d array) by doing :</p> <blockquote> <p>X<sub>t</sub> = (((X&prime;-X)/T)*t)+X ,<br> Y<sub>t</sub> = (((Y&prime;-Y)/T)*t)+Y</p> </blockquote> <p>This works well, but it is linear. I'm looking for something curvier. A little bit like a parabola works. Basically instead of getting to X' in a straight line, I'm looking for an algorithm that will curve out and end up at X' and the amount of curvature is base on a variable.</p> <p>Thanks</p> <p>*EDIT I think Bezier curve look to be what I want, but I'm not sure how to implement it. Could someone please explain the quadratic bezier formula. I'm also unsure what the 'E' - like symbol does. I think it relates to a range but I'm not sure, Thanks</p> http://stackoverflow.com/questions/1851012/set-a-path-variable-with-spaces-in-the-path-in-a-windows-cmd-file-or-batch-file 0 Set a path variable with spaces in the path in a Windows .cmd file or batch file marcerickson 2009-12-05T03:08:33Z 2009-12-06T12:24:59Z <p>I'm new to script writing and can't get this one to work. I could if I moved the files to a path without a space in it, but I'd like it to work with the space if it could. </p> <p>I want to extract a bunch of Office updates to a folder with a .cmd file. To make the batch file usable on any computer, I set a path variable which I only have to change in one place to run it on another machine. The problem is that the path has a space in it. If I put quotes around the path in the definition, cmd.exe puts them around the path before it appends the filename and switches and the batch fails with "Command line syntax error." Without quotes, it fails with, "is not recognized as an internal or external command, operable program, or batch file."</p> <p>For testing, I'm using the help switch until or if I can get it working. I can do it using an 8.3 file/folder name (e.g. My Documents as MyDocu~1), but can it be done a different way?</p> http://stackoverflow.com/questions/1855225/how-to-use-relative-path-for-assets-in-flash-library 0 How to use relative path for assets in Flash library ? Adnan Doric 2009-12-06T12:11:40Z 2009-12-06T12:11:40Z <p>Hello all,</p> <p>When I drag and drop images in flash library, the path is sometimes relative (./somefolder/someimage.png), and sometimes it is absolute (D:\blah\somefolder\someimage.png).</p> <p>How can I use only relative paths in flash library in order to be able to update all images from any computer and/or from any folder ?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1853706/algorithm-to-traverse-points-horizontally-and-vertically 2 algorithm to traverse points horizontally and vertically SD 2009-12-05T22:39:48Z 2009-12-05T23:40:18Z <p>There are n points in the 2D plane. A robot wants to visit all of them but can only move horizontally or vertically. How should it visit all of them so that the total distance it covers is minimal?</p> http://stackoverflow.com/questions/1846307/reverse-of-os-path-normcase-on-windows 2 Reverse of os.path.normcase on Windows pkit 2009-12-04T11:10:56Z 2009-12-05T19:01:04Z <p>Is there a simple way to get the "real" case sensitive path from a all lower case path. Like the reverse of os.path.normcase.</p> <p>For example, consider the directory:</p> <pre><code>c:\StackOverFlow </code></pre> <p>If I have the following snippet, how to obtain d_real?</p> <pre><code>&gt;&gt;&gt; import os &gt;&gt;&gt; d = os.path.normcase('C:\\StackOverFlow') # convert to lower case &gt;&gt;&gt; d 'c:\\stackoverflow' &gt;&gt;&gt; d_real = ... # should give 'C:\StackOverFlow' with the correct case </code></pre> http://stackoverflow.com/questions/1852744/where-do-data-files-go-so-the-microsoft-visual-c-2008-debugger-can-find-them 0 Where do data files go so the Microsoft Visual C++ 2008 debugger can find them? pocketdora 2009-12-05T17:03:56Z 2009-12-05T17:21:50Z <p>I am writing code that opens an istream object on a file specified by the user. I want to be able to run the program in the debugger and just type the filename (eg data.txt) at the prompt, not the whole path. I haven't worked out how to do this inside the IDE so I have been saving my .txt file to the debug folder and running the .exe file, but that means I can't step through the program. How do I make it work inside the IDE instead? Thanks. </p> http://stackoverflow.com/questions/1851167/algorithm-for-finding-path-to-point 1 Algorithm for finding path to point unknown (yahoo) 2009-12-05T05:02:10Z 2009-12-05T05:34:40Z <p>I'm not sure if I worded this properly, but basically I have an object at point X,Y and I want an algorithm that can get this point to X',Y' but like show its route so I can animate it. I'm building a tile game and when the game starts I want the tiles to magically place themselves into a nice 2d array. So I will generate a random coordinate and then tell it to go to its goal within 50 frames. Thanks</p> http://stackoverflow.com/questions/1081831/windows-stdifstreamopen-problem 0 Windows std::ifstream::open() problem iCE-9 2009-07-04T08:57:52Z 2009-12-04T14:53:57Z <p>I know there's been a handful of questions regarding std::ifstream::open(), but the answers didn't solve my problem. Most of them were specific to Win32, and I'm using SDL, not touching any OS-specific functionality (...that's not wrapped up into SDL).</p> <p>The problem is: std::ifstream::open() doesn't seem to work anymore since I've switched from Dev-C++ to Code::Blocks (I've been using the same MinGW-GCC back-end with both), and from Windows XP to Vista. (It also works perfectly with OS X / xcode (GCC back-end).)</p> <p>My project links against a static library which #includes &lt;string&gt;, &lt;iostream&gt;, &lt;fstream&gt; and &lt;cassert&gt;, then a call is made to functionality defined in the static library, which in turn calls std::ifstream::open() (this time, directly). Following this, the stream evaluates to false (with both the implicit bool conversion operator and the good() method).</p> <p>Code:</p> <pre><code>#include "myStaticLibrary.hpp" int main(int argc, char **argv) { std::string filename("D:/My projects/Test/test.cfg"); std::cout &lt;&lt; "opening '" &lt;&lt; filename &lt;&lt; "'..." &lt;&lt; std::endl; bool success(false); // call to functionality in the static library { std::ifstream infile(filename.c_str()); success = infile.good(); // ... } // success == false; // ... return 0; } </code></pre> <p>stdcout.txt says:</p> <blockquote> <p>opening 'D:/My projects/Test/test.cfg'...</p> </blockquote> <p>When I open stdcout.txt, and copy-paste the path with the filename into Start menu / Run, the file is opened as should be (I'm not entirely sure how much of diagnostic value this is though; also, the address is converted to the following format: file:///D:/My%20projects/test/test.cfg).</p> <p>I've also tried substituting '/'s with the double backslash escape sequence (again, slashes worked fine before), but the result was the same.</p> <p>It <em>is</em> a debug version, but I'm using the whole, absolute path taken from main()'s argv[0].</p> <p>Where am I going wrong and what do I need to do to fix it?</p> http://stackoverflow.com/questions/661320/how-to-add-native-library-to-java-library-path-instead-of-overriding-it 3 How to add native library to "java.library.path" (instead of overriding it) Touko 2009-03-19T07:26:48Z 2009-12-04T08:19:23Z <p>Hi,</p> <p>I got a native library that needs to be added to <em>java.library.path</em>. With JVM argument <em>-Djava.library.path=path...</em> I can set the path as I want.</p> <p>My problem is that my other library (pentaho reporting) searches fonts based on the default java.library.path (including system directories etc) and the manual setting overrides the default path..</p> <p>So : how can I <strong>add</strong> a path entry to the default java.library.path instead of overriding it (which seems to be done with -Djava.library.path)? (I wouldn't want to add the default path by hand, which wouldn't be nice for the sake of deployment)</p> http://stackoverflow.com/questions/753418/links-pointing-to-absolute-path 1 Links pointing to absolute path kadeshpa 2009-04-15T19:52:54Z 2009-12-03T16:24:30Z <p>Is it a good practice that links should always point to absolute path rather than pointing from current directory?</p> <p>I am talking this with reference - where i need to maintain software and all its previous versions should always point to latest version.</p> http://stackoverflow.com/questions/1840178/new-to-ant-problem-with-relative-paths 1 New to Ant - Problem with relative paths Silma 2009-12-03T14:25:55Z 2009-12-03T15:11:40Z <p>Please help, I'm going slightly mad!!</p> <p>I'm using Eclipse-generated antfiles to build a project with dependencies, one of which has its own buildfile in a directory which is a <em>sibling</em> to the direct ancestor of the project I'm building. E.g. if my directory is <strong>"/base/modules/clinicalcontext"</strong>, the directory of one of the dependencies is simply <strong>"/base/core"</strong>.</p> <p>So, the generated build.xml uses ../../core which afaik is correct. But it is not!! From the console it is apparent that Ant goes back <em>three</em> levels and not just two (it gives FileNotFound on <strong>"/core/build.xml"</strong>).</p> <p>I tried to change the relative path to <strong>"../core"</strong> and much to my astonishment, this way Ant goes back by <em>one</em> level (it laments <strong>"/base/modules/core"</strong> being nonexistent). So how in the world I tell Ant t go back by <em>two</em> levels? I'd prefer to avoid using absolute paths, since I might have to move the project to a different machine someday.</p> <p>Thanks everybody.</p> http://stackoverflow.com/questions/1839532/getleft-of-a-path-in-a-canvas 0 GetLeft of a Path in a canvas. np 2009-12-03T12:11:10Z 2009-12-03T12:11:10Z <p>I am trying to find the Left of a Path using Canvas.GetLeft(aPath); But i am getting a 0. I have tried calling aPath.Measure and got the DesiredSize successfully which has the width but is there any way i could get the left of a aPath. Please help. Thanks N</p> http://stackoverflow.com/questions/1838619/relocating-app-config-file-to-a-custom-path 2 Relocating app.config file to a custom path Ries 2009-12-03T08:59:01Z 2009-12-03T10:49:26Z <p>Is it possible to relocate the whole App.Config file to a custom path?</p> <p>It seems a bit odd that the config file resides in the same folder as the exe, with Windows' new approcah of saving all program settings in c:\ProgramData and all.</p> <p>An additional requirement we have is to programatically specify where to find the app.config file. The reason for this being that we spawn different service instances from the same exes, and would like to store each service's app.config in that service's settings folder under c:\ProgramData\\.</p> http://stackoverflow.com/questions/1836573/study-roadmap-for-php 1 Study Roadmap for PHP? Rami Alashri 2009-12-02T23:15:54Z 2009-12-03T04:51:44Z <p>I need to know what are the right order of the PHP learning steps, I have learnt PHP basics, OOP basics too, and I made some small projects using them, however, there are a lot of subjects and techniques in PHP and I'm confused with what to begin first and then what etc?</p> <p>Following a methodical way when learning anything can save a lot of time.</p> <p>Please don't only tell me the next step for me, I need to know the full Roadmap for studying PHP?</p> http://stackoverflow.com/questions/1714651/iphone-table-view-problem-with-indexpath-row 0 iPhone table view - problem with indexPath.row Yassin 2009-11-11T11:40:18Z 2009-12-01T18:42:21Z <p>I'm using indexPath.row do determine in which row of my tableview I do something. The title of my cells is containing a number which should be 1 in the first row and 18 in the last row, so I have 18 rows. This works for the first 11 rows, but after that, I have numbers in the title which seem to be generated randomly! Sometimes 16, then 5, then 18, then 12... and so on. What's the problem with it/why does the indexPath.row variable behave like that?</p> <p>My cellForRowAtIndexPath method:</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *MyIdentifier = @"MyIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier]; if (cell == nil) { [[NSBundle mainBundle] loadNibNamed:@"myCell" owner:self options:nil]; cell = cell0; self.cell0 = nil; } UILabel *label; label = (UILabel *)[cell viewWithTag:1]; label.text = [NSString stringWithFormat:@"Cell %d", indexPath.row]; return cell; </code></pre> <p>}</p> <p>Any more suggestions on how to solve the problem? I didn't get it working until now...</p> <p>// Update with more code:</p> <p>Here is how I declare the cell. It is in an XIB file (template "empty XIB") in which I just put the cell from the library in IB.</p> <pre><code>@interface myViewController : UITableViewController { UITableViewCell *cell0; } @property (nonatomic, retain) IBOutlet UITableViewCell *cell0; </code></pre> <p>Then, at the top of the myViewController.m file:</p> <pre><code>@synthesize cell0; </code></pre> <p>My cellForRowAtIndexPath method is already posted above. It is equal to the cellForRowAtIndexPath method in the SDK documentation, and in Apple's example, it seems to work. </p> http://stackoverflow.com/questions/1815606/rscript-determine-path-of-the-executing-script 2 Rscript: Determine path of the executing script dehmann 2009-11-29T13:58:32Z 2009-12-01T01:05:34Z <p>I have a script called <code>foo.R</code> that includes another script <code>other.R</code>, which is in the same directory:</p> <pre><code>#!/usr/bin/env Rscript print("Hello") source("other.R") </code></pre> <p>But I want <code>R</code> to find that <code>other.R</code> no matter what the current working directory. </p> <p>In other words, <code>foo.R</code> needs to know its own path. How can I do that?</p>