File path, specifies a unique location in a file system.

learn more… | top users | synonyms

1
vote
1answer
36 views

c# class library use files

I'm building a class library which use a .dat file, inside the library i made a folder App_Data and put the .dat file inside it, how can i have my library to use the .dat file. How could it be ...
1
vote
0answers
60 views

How to get folder path of SaveDialog when that dialog appers for first time, before the file is saved?

When SaveDialog pops up first time and when FileName is '', and initial directory is not set, how to get directory path?
0
votes
0answers
20 views

How to check if boost::filesystem::path (of wchar_t) is having valid file path in windows?

My code contains boost::filesystem::path variable which will accept unicode characters(std::wstring input to path). I want to check whether filesystem::path is valid Windows path or not. I can see lot ...
0
votes
1answer
38 views

Can't find my package path in file explorer

My project package doesn't show in DDMS > File Explorer (I had selected my phone in window devices). I found that an error is shown in logcat, which says can't open file for reading. Is it possible ...
1
vote
2answers
36 views

500 internal sever error While referring a file in PHP?

I am facing a problem 500 internal server error while referring a file through PHP Here is my code <?php require_once(dirname(__FILE__).'/html2pdf.class.php'); ?> Here I am having the class ...
0
votes
0answers
15 views

Returning Filename with wildcards in VFP 9

I am trying to locate the full name of a file using a wildcard. The code I have is: MLCNo=crjbis.ffromlot subfolder=LEFT(mlcno,3) filename=SYS(2000,'S:\MLC\MLC#\'+subfolder+'xx\'+mlcno+'21391*.pdf') ...
0
votes
0answers
11 views

Problems with absolute filepath using DOMdocument

I'm having trouble using an absolute filepath with DOMdocument. More-or-less following this guide: https://developers.google.com/maps/articles/phpsqlajax_v3 I have been able to get a test code ...
0
votes
1answer
16 views

Create generic audio path for iOS app

Analogous to what UIImage imageNamed does to replace the filesystem path for my image files, I am looking for a method to create a generic path from my absolute audio path on my filesystem. Can ...
0
votes
1answer
48 views

getServletContext().getRealPath(“/”) omitting forward slash (/)

I'm trying to upload a file from an HTML file input. I am using Apache Commons FileUpload and the file uploads successfully. However, when I try storing the file path in my MySQL, it is storing it ...
0
votes
2answers
33 views

Where do I find my -I/usr/local directory?

I am trying to run this code sample to test swig on Ubuntu 12.04. I have python 2.7.3 installed on my system. This code seems to be for networked machines. How can I find where my python is installed ...
0
votes
0answers
9 views

WindowsForms filepath format

I have problem. What is the right filepath format? (no full filepath, I want to use this program on another PC) http://s24.postimg.org/rz0eodw8z/fff.png I am 100% sure problem is in format, because if ...
0
votes
0answers
23 views

how write an image in project folder in java

I have standalone application in netbeans and want to write file in project folder. the below code working fine for any Local Drive BufferedImage image = null; try { URL url = ...
0
votes
1answer
21 views

PHP's file-path component functions return incorrect results

You can get parts of a full file path using array notation, like echo $path_parts['dirname'], "\n"; echo $path_parts['basename'], "\n"; echo $path_parts['extension'], "\n"; echo ...
0
votes
0answers
22 views

Filepaths in Wampserver and PHP

Trying to use Filesystem functions in a Wampserver environment and cannot read or open files. Ran these: echo dirname('c:/wamp/localhost/www/test/test.php'); $basename = ...
0
votes
1answer
30 views

Include HTML files with a PHP script in a different directory while keeping file paths in HTML intact?

From a PHP script, I want to include a "header.php" and "footer.php" file, which are in a different directory. They have HTML in them, and the HTML has references to file paths in them such as: ...
-1
votes
1answer
34 views

Get filepath to LocalDB file from connection string in .NET [duplicate]

How to get the filepath to the .mdf file of a LocalDB database from its connection string in .NET? Example string: Data Source=(LocalDb)\v11.0;Initial Catalog=MyDb;Integrated ...
0
votes
0answers
61 views

Why is sAjaxSource not taking my path in the datatable?

The default path is like this: "sAjaxSource": "http://datatables.net/release-datatables/examples/server_side/scripts/jsonp.php", "fnServerData": function( sUrl, aoData, fnCallback ) { ...
0
votes
0answers
47 views

Change default location of inserted pictures in VBA

I used the following macro in Word 2010 to change the default location of inserting pictures to the directory of the active document: Sub AutoOpen() Options.DefaultFilePath(wdPicturesPath) = ...
0
votes
1answer
29 views

file path or file location for Java - new file()

I have the following structure for my project. In eclipse: myPorjectName src com.example.myproject a.java com.example.myproject.data b.xml In ...
1
vote
1answer
37 views

Add colon to file path after drive letter (ie: change /c/ or c/ to c:/) in Java

Basically, I'm getting a file path from a string inside of a CSV file. However, for some reason, the program generating the CSV file removes the colon from the string, so I end up with a file path ...
0
votes
0answers
18 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: ...
1
vote
3answers
94 views

File path for AJAX script (in Wordpress)

I use this jquery-ajax script to send email: $.ajax({ url: process.php, type: "POST", data: data, cache: false, ... in url I call the php file ...
0
votes
0answers
25 views

Strange error when getting image path from Camera Intent

My code works perfectly fine in LG Optimus Black(p970) , Prada , SII , SII Lite, but it brokes in Galaxy Y and others low resolution devices when I try to get an image path from Camera intent... ...
0
votes
2answers
50 views

Python: Dynamically add relative path, based on OS

I wrote my first program in Python for my dad to convert about 1000 old AppleWorks files that he has (the AppleWorks format, .cwk, is no longer supported) to .docx. To clarify, the program does not ...
0
votes
2answers
59 views

how the user would give the full path of a file using java

i have a problem and i think that someone maybe could help me because i am a little bit confused. I had made a program where i am reading excel files and i am storing their data in a database. In this ...
0
votes
1answer
25 views

Using QR codes to locate and play a locally stored video

I want to use QR codes in a Gallery setting to play videos stored on tablets using QR codes. I do not want the QR codes to link to remote URLs but locate and play video files stored on the local ...
-1
votes
0answers
28 views

Combining arbitrary number of strings into a file path java [closed]

Here is a function I wrote for combining strings into a file path (mainly as an exercise). Searching around SO I've found a couple solutions using existing libraries, but is there anything important ...
0
votes
1answer
44 views

Use folder instead of drive letter designation in path

Is there a way to use mapped network drive folders instead of drives when listing path of file? For example, I have a file with this path location; N:\COMMON\Test.xls and the N: drive is c103d213 on ...
-2
votes
1answer
54 views

How to handle file path in Perl?

I've the following script which is used to read files in the given path!in this script let's assume path like chdir("/usr/test1/street/accounts/goal/routecab/Prpbict") work nicely but ...
0
votes
0answers
17 views

'File path' use causing program exit in Python 3

I have downloaded a set of html files and saved the file paths which I saved them to in a .txt file. It has each path on a new line. I wanted to look at the first file in the list and then itterate ...
0
votes
0answers
63 views

Uri and Filepath for all the raw resources android

I have few files in raw folder of application, i need to have both Uri and filepath for those/all files present in the raw folder so far, i am able to print all the names of files in raw folder(from ...
0
votes
1answer
29 views

Android Spinner from a Directory - Only show part of filepath and only files with a certain extension?

I currently have a spinner that is populated using the following; File sd = new File("sdcard/"); File[] sdDirList = sd.listFiles(); // String[] filenames = ...
4
votes
2answers
75 views

How to get a clean absolute file path in Java regardless of OS?

Here's the problem. After some concatenations I may happen to have a string like this "C:/shared_resources/samples\\import_packages\\catalog.zip" or even this ...
1
vote
2answers
66 views

Java - filepath - Invalid escape sequence

I am uploading file to a destination by providing filepath. It works fine when file path is like String filePath = "D:\\location"; But while providing a server location like String filePath = ...
0
votes
1answer
31 views

Perl regex extracting a match using braces

I tested the following code #! /usr/bin/perl use strict; use English; #this code extracts the current scripts filename #by removing the path from the filepath my $Script_Name = $PROGRAM_NAME; ...
0
votes
0answers
17 views

Store network path from SQL Server in char* using ODBC in C

I have a file path returned from a store procedure that is something like this: \\networkpath\somedata\foundhere The problem is that when reading the nvarchar from SQL into a char*, C sees the '\n' ...
-1
votes
0answers
42 views

FileNameMap.getContentTypeFor(path) return NULL

I have some strenge problem in my application. I got null value when run this line on some phones fileNameMap.getContentTypeFor(path) and on some phones it return not null but any file type i.e ...
1
vote
1answer
87 views

Android Delete Image from Gridview

I am trying to simply delete an image from a gridview. I was having troubles earlier with nothing deleting, but now that isn't a problem since I determined that I just need the correct file path. ...
0
votes
1answer
33 views

in slim how can I pass a file path into a variable?

what i have right now is: $app->get(/folderBrowse/:path function($app){ bla bla bla }); // I know this is not using '' or , but it's just for example, because I've tried it with many ...
3
votes
2answers
74 views

getResourceAsStream filepath while running .jar

My code: BufferedInputStream bis = new BufferedInputStream(getClass().getResourceAsStream("playerhit.mp3")); This code works fine when the playerhit.mp3 file is in same package as the MP3.classit ...
1
vote
1answer
34 views

Specify relative file path

I'm attempting to connect to this API. As part of the instructions, I must add a reference, like so: System.setProperty("wordnet.database.dir", "C:\\WordNet-3.0\\dict\\"); That's all well and good, ...
1
vote
1answer
42 views

what is the difference between \ and \\ in file path

What is the difference between single slash and double slash in file path for Windows operating system such as c:\Personal\MyFolder\\MyFile.jpg and c:\Personal\MyFolder\MyFile.jpg What if i use ...
4
votes
5answers
79 views

Is there a C# equivalent to FoxPro's addbs()?

In Visual FoxPro. there is a function addbs(), to which you pass a string. If there is not a backslash at the end of the (trimmed) string, it will add one. If there is a backslash, it will return the ...
1
vote
1answer
131 views

Set default value in TextBoxFor when type = file

I am using an @Html.TextBoxFor to load and, potentially, set an attachments file path on an edit page. I can get the file browser window to open and reset the value. However, I cannot get the current, ...
0
votes
2answers
57 views

How can I find a file while in my java code

I am stuck on a how to robustly find a file path from my Java program. If I am using Linux, I can launch my program from my home folder, and then I can't say find my file at ./myProgram/myFile. Is ...
0
votes
2answers
66 views

How to create a folder in a Users Program File directory?

I know how to create a new folder if it is not already present in Java. File directory = new File("path"); directory.mkdir(); Do all developers use the Program Files location to create folders for ...
0
votes
1answer
36 views

file path is not retrieved in codeigniter

I am creating an invoice on users desired package selection. The pdf file is being created (but it takes some time), while the code checks for the file. The file exists. Here is the address of the ...
1
vote
0answers
38 views

Java File access - URI madness

I'm working with IBM OmniFind, with has a fun way of handling file paths. If you've got a path like this: C:\temp\some ยง$% path\temp - Sho rtcut.lnk It becomes to this sort of "URI" (that's what ...
1
vote
1answer
74 views

ASP MVC3 - Obtaining file path

In our ASP MVC3, we need to allow the user to navigate to a shared folder on our LAN and select the file they want associated with a particular item. We want to maintain one copy of the item, so we ...
0
votes
3answers
349 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 ...

1 2 3 4 5 12