Tagged Questions
The filepath tag has no wiki summary.
13
votes
7answers
1k views
Get the (last part of) current directory name in C#
I need to get the last part of current directory, for example from /Users/smcho/filegen_from_directory/AIRPassthrough, I need to get AIRPassthrough.
With python, I can get it with this code.
...
10
votes
2answers
128 views
Haskell obscure file path operations (simplify away the dots)
I have a dynamically constructed file path in haskell that ends up something like this:
/abc/def/../ghi/./jkl
and I'd like to reduce it to the more readable
/abc/ghi/jkl
For printing. Is there a ...
9
votes
3answers
5k views
Java : File.toURI().toURL() on Windows file
The system I'm running on is Windows XP, with JRE 1.6.
I do this :
public static void main(String[] args) {
try {
System.out.println(new File("C:\\test a.xml").toURI().toURL());
} ...
7
votes
8answers
19k views
Find the path of notepad.exe and mspaint.exe
What is the best way to find out where is notepad.exe and mspaint.exe that will work across various versions of Windows?
Should I get the Windows directory via SHGetFolderPath(NULL, CSIDL_WINDOWS, ...
6
votes
2answers
92 views
Directory contents in Haskell
Is there a way of returning a list of files in a directory with their absolute paths.
When I do
getDirectoryContents dir
it gives me a list of filenames in the directory. If I am using these ...
6
votes
4answers
344 views
How can I obtain the case-sensitive path on Windows?
I need to know which is the real path of a given path.
For example:
The real path is: d:\src\File.txt
And the user give me: D:\src\file.txt
I need as a result: d:\src\File.txt
5
votes
3answers
149 views
Copy/extract part of a File path?
How can I copy/extract part of a File path?
For example, say if I have this path: D:\Programs\Tools\Bin\Somefile.dat
how could I copy/extract it to make it like this:
C:\Users\Bin\Somefile.dat
or
...
5
votes
2answers
107 views
Python finding stdin filepath on Linux
How can I tell the file (or tty) that is attached to my stdios?
Something like:
>>> import sys
>>> print sys.stdin.__path__
'/dev/tty1'
>>>
I could look in proc:
...
5
votes
5answers
134 views
Is there a more correct type for passing in the file path and file name to a method
What I mean by this question is, when you need to store or pass a URL around, using a string is probably a bad practice, and a better approach would be to use a URI type. However it is so easy to ...
5
votes
6answers
10k views
How to disable file input text box in IE?
Is it possible to prevent a user from typing in a file input text box in IE? The reason I ask is that if a user enters text that does not look like a file system path (eg. doesn't start with ...
5
votes
4answers
2k views
C# Filepath Recasing
I'm trying to write a static member function in C# or find one in the .NET Framework that will re-case a file path to what the filesystem specifies.
Example:
string filepath = @"C:\temp.txt";
...
4
votes
2answers
112 views
Why is System.IO implemented this way
Took me a while to find this bug in my code. Trying to create a temporary test directory:
Path.Combine("C:", "test");
Directory.CreateDirectory(path);
So this doesn't create the directory C:\test. ...
4
votes
5answers
116 views
Regex to check if a path go only down
I want to test if a path given by the user go down like:
my/down/path
at the opposite of:
this/path/../../go/up
for security reasons.
I already made this:
return ...
4
votes
4answers
316 views
How to hide file path in URL?
What would be the best way to way to change my URL address to a custom one? Currently my website shows:
http://nkonecny.com/_pages/_portfolio/port.html
I want to change it to something like this:
...
4
votes
1answer
155 views
Is there a convenient way to map a file uri to os.path?
A subsystem which I have no control over insists on providing filesystem paths in the form of a uri. Is there a python module/function which can convert this path into the appropriate form expected by ...
4
votes
2answers
214 views
Crossplatform file path building and representation
I am in a refactoring stage for a project I am working on and would like to make some improvements to how I build and represent file system paths. What things should I take into consideration when ...
4
votes
3answers
701 views
executing filenames with spaces in cmd pmt Passed from c++ program
I am currently working on getting my program to execute a program (such as power point) and then beside it the path to the file I want to open. My program is getting the file's path by using:
...
4
votes
3answers
5k views
Remove file extension and path from a string in Perl
I want to obtain a file name without its path (if it is part of the string) and also the extension.
For example:
/path/to/file/fileName.txt # results in "fileName"
fileName.txt ...
4
votes
1answer
526 views
How to get absolute file path from base path and relative containing “..”?
string basepath = @"C:\somefolder\subfolder\bin"; // is defined in runtime
string relative = @"..\..\templates";
string absolute = Magic(basepath, relative); // should be "C:\somefolder\templates"
...
4
votes
7answers
2k views
How to get the path of app(without app.exe)?
I want to get the path of my app like: "\\ProgramFiles\\myApp", I try to use the following code:
string path = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase;
But it returns ...
3
votes
2answers
58 views
How do I set the file path to the current user?
Right now for a directory path, I have:
os.chdir(r'C:\users\Ryan\AppData\Local\Google\Chrome\Application')
How do I make it so that instead of "Ryan" it uses the username of the person using the ...
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
37 views
Two asterisks in file path
What does the following file path mean?
$(Services_Jobs_Drop_Path)\**\*.config
The variable just holds some path, nothing interesting. I'm a lot more concerned, what the hell the ** mean.
Any ...
3
votes
1answer
64 views
Why doesn't os.normapath collapse a leading double slash?
Under Unix, os.path.normpath collapses multiple slashes into single ones except when exactly two slashes appear that he start of the path. Why the exception?
To illustrate, I get the following ...
3
votes
6answers
81 views
Retrieving tail-end of a file path
I can't find an effective way to do this. The best way to describe what I'm trying to do is by example, so where we go (assuming /bar/ is the parent):
C:\foo\bar\baz\text.txt
will be my path. I'm ...
3
votes
3answers
120 views
In Python, how can I get the file system of a given file path
In python, given a directory or file path like /usr/local, I need to get the file system where its available. In some systems it could be / (root) itself and in some others it could be /usr.
I tried ...
3
votes
1answer
286 views
Ruby Regex to Match Both Unix And Windows File Paths
The following instance method takes a file path and returns the file's prefix (the part before the separator):
@separator = "@"
def table_name path
regex = Regexp.new("\/[^\/]+#{@separator}")
...
3
votes
3answers
74 views
PHP directory rules of thumb?
I'm trying to make sure my file paths are as robust as they can be, and everyone knows that hard-coding paths can be disastrous in a lot of cases. Are there any general rules of thumb regarding ...
3
votes
2answers
137 views
Get 2 levels up from dirname( __FILE__)
How can I return the pathname from the current file, only 2 directories up?
So if I my current file URL is returning theme/includes/functions.php
How can I return "theme/"
Currently I am using
...
3
votes
6answers
409 views
How to build a full path string (safely) from separate strings?
Does C++ have any equivalent to python's function os.path.join? Basically, I'm looking for something that combines two (or more) parts of a file path so that you don't have to worry about making sure ...
3
votes
3answers
436 views
How to get full filepath when uploading files in PHP?
I really want to know how am I gonna get the full filepath when I upload a file in PHP?
Here's my my problem...
I am importing a csv file in PHP. Uploading a file isn't a problem but the function ...
3
votes
1answer
250 views
Vim in ex-command mode, how to complete the path only up to the first non unique match?
I'm in a directory with many subfolders with a common prefix:
./pref-apple
./pref-aubergine
./pref-mango
./pref-milk
I have a file in one of these folder and I want vim to auto-complete the path ...
3
votes
1answer
217 views
Doing file path manipulations in XSLT
I'd like my generated output file to contain file paths that point to a path relative to the stylesheet. The location of the stylesheet can change and I don't want to use a parameter for the ...
2
votes
2answers
75 views
Use Dir to return files from a folder in file system order
PixPath is the full path to a folder of jpg's, and I'm using code like the following to process each jpg.
fileName = Dir(PixPath)
Do Until fileName = ""
If Right$(fileName, 4) = ".jpg" Then
...
2
votes
5answers
71 views
K&R: Exercise 7-1 - How do I invoke this?
Exercise 7-1. Write a program that converts upper case to lower or lower case to upper, depending on the name it is invoked with, as found in argv[0].
For those of you interested in writing the ...
2
votes
1answer
270 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
5answers
143 views
Strange path separators on Windows
I an running this code:
#!/usr/bin/python coding=utf8
# test.py = to demo fault
def loadFile(path):
f = open(path,'r')
text = f.read()
return text
if __name__ == '__main__':
...
2
votes
2answers
213 views
How to get a platform independent directory separator in PHP?
I'm building a path string in PHP. I need it to work across platforms (i.e., Linux, Windows, OS X).
I'm doing this:
$path = $someDirectory.'/'.$someFile;
Assume $someDirectory and $someFile are ...
2
votes
5answers
161 views
Java: How to get the parts of a path
This should be fairly simple, but I'm just stuck. Say you have the path /a/b/c/. I'd like to convert that into an array containing:
/
/a/
/a/b/
/a/b/c/
The slash at the beginning and the end ...
2
votes
3answers
512 views
bash scripting: how to find the absolute path of “symlink/..”?
Given two files:
generic/scripts/hello.sh
parent/scripts -> generic/scripts
Upon calling parent/scripts/hello.sh from any location, I would like (in the script) to find the full path of the ...
2
votes
2answers
639 views
MonoTouch - How to specify image path of UIImage.FromFile()
I have a path problem with UIImage.FromFile() method. My solution folder has 3 projects and the main UI project has an Images folder in it. I put all my project images in this folder and I have code ...
2
votes
3answers
650 views
C#: Any way to get around the 260 character limit of a fully qualified path? [closed]
Possible Duplicate:
Why does the 260 character path length limit exist in Windows?
I'm trying to figure out a way to get around this dreaded 260 character fully qualified path limit and at ...
2
votes
1answer
390 views
Is it possible to get the full path to an Android application asset file as a string?
I'm trying to use a third party library in my Android app that only allows me to load a file using a string that represents the path to the file. I've placed this file in my app's assets folder ...
2
votes
2answers
884 views
how to set temporary directory relative path in simple jsp file upload? FIleNotFound Exception
I'm doing a simple file upload in jsp. And i seem to have been stopped by this simple path issue. I'm developing on windows but will propably deploy on a linux machine. so i have the tmpdir and the ...
2
votes
1answer
115 views
WPF - Is there something similar to PathCompactPath?
I would like to compact filepaths the same way that PathCompactPath does in Windows Forms, so when you stretch out the parent control, more of the filepath becomes visible and vice versa.
Since ...
2
votes
3answers
191 views
How to make the Filepath Generic which suits all OS?
private static final String DESTINATION_DIR_PATH ="/files";
private File destinationDir;
public void init(ServletConfig config) throws ServletException {
super.init(config);
String ...
2
votes
1answer
302 views
how to validate a safe filename with double (.) (.) “fileName ..pdf”
Im sarching how to create a safe filename in my webapplication I had read a lot of post around here last one ...
2
votes
3answers
473 views
Problem executing a .bat file at a path where folder name has spaces, in VB6
I'm trying to execute a .bat file in VB6 (silent window mode) with following code.
Set WshShell = CreateObject("WScript.Shell")
cmds = WshShell.RUN("E:\My Folder\RunScript.bat", 0, True)
Set ...
2
votes
2answers
287 views
How do you determine the physical path of a file without an HttpContext?
I have some processes that run without an HttpContext in an ASP.NET MVC web application. This process needs to be able to determine the physical path to the Contents directory of the application for ...
2
votes
3answers
304 views
Find a file with a certain extension in folder
Given a folder path (like C:\Random Folder), how can I find a file in it that holds a certain extension, like txt? I assume I'll have to do a search for *.txt in the directory, but I'm not sure how ...