A block of arbitrary information, or resource for storing information, accessible by the string-based name or path. Files are available to computer programs and are usually based on some kind of persistent storage.

learn more… | top users | synonyms (1)

-1
votes
1answer
14 views

How to get client files in java bean (ADF)?

I develop a web application using JDeveloper. Then, My scenario is I want to get a file from client directory(e.q C://Image.jpg). What I want to achieve is the client's directory defined ...
0
votes
2answers
54 views

Extracting the file name from the variable dynamically

I have a query a method in which the parameter is coming as file name that upon debugging I have analyzed, as shown below: private processfile ( string filepath) { } Now this file path can be ...
0
votes
2answers
60 views

Set the PDF file name in C#

I am generating a PDF file with C#. The title of the file is assigned automatic. I want to set the file name when I open the folderbrowserdialog . How can i do that? DialogResult result = ...
0
votes
2answers
32 views

Use PHP to Get File Path/Extension from URL string

I'm reading up on pathinfo basename and the like. But all I am gathering from those are how to obtain the details I want when using an absolute/relative path. What I am trying to figure out is how can ...
3
votes
3answers
68 views

Python version of freopen()

Is there anything in python that can replicate the functionality of freopen() in C or C++? To be precise, I want to replicate the functionality of: freopen("input.txt","r",stdin); and ...
0
votes
1answer
38 views

Same file content but different md5sum value?

I found a weird problem. The common-account.puppet are not read properly by pam The common-account.written can be read properly by pam. However their text are the same, using meld and vimdiff ...
0
votes
2answers
29 views

How to use NIO to write InputStream to File?

I am using following way to write InputStream to File: private void writeToFile(InputStream stream) throws IOException { String filePath = "C:\\Test.jpg"; FileChannel outChannel = new ...
-1
votes
1answer
53 views

PHP file not showing source code [closed]

My PHP file is not showing any source code, but it's showing file size of 26 KB. It's just showing invisible characters. When I open it with Notepad++, it shows NULL all over the file. Is there ...
0
votes
4answers
32 views

PHP - File Upload Security, Why Won't This Method Work?

I'm new to file uploading, and I realize that security is HUGE. Now per testing purposes before I really wanted to dive into the security I wanted to just get a quick test upload going, when I tried ...
5
votes
1answer
90 views

understanding a csproj assembly reference

I am using VS2010 and I tried to add a few assembly from local hard disk to my C# project through file reference. Peeking into the csproj file. I found sometimes the file reference appears as ...
0
votes
0answers
3 views

Read an object from file created in another package

I have the following problem. When I use one application (creted in package A) to save some date to file, it appends information about the class to which object that I save belongs to. After this I ...
-1
votes
1answer
45 views

Get php to read from an XML file [closed]

I'm a PHP beginner and need help with a little coding problem: class _settings_file { /** * @param string $file * @param array $settings array($settings_group => $settings_name) It ...
0
votes
2answers
62 views

Perl download from url to local drive

I want to offer my visitors a file for download to their local machine (e.g. the Download directory in case of Windows7). The code below works perfectly well, but only if the file is located on the ...
0
votes
1answer
63 views

Python write in the same line of file

Supose i have a function like this: f=open('file.txt','w') n=0 while(n<20): f.write(n) n=n+1 f.close() but the loop writes all numbers to the file, and i just want the current number in ...
0
votes
2answers
35 views

Bitmap deleted but still visible?

I have a funtcion which return BitmapImage: private BitmapImage dfa2bmp(DFA dfa) { //[...] //myGraph.png generated here[...] BitmapImage bmp = new BitmapImage(); ...
0
votes
2answers
22 views

How to delete a string from a file in Ruby with user input

I figured out how to search a file to locate a specific string based on user input, but I don't know how to delete said string once I've located it. I've seen various grep methods but don't know how ...
0
votes
2answers
80 views

Open file into array of bits in C++

I am trying to open a file into an array of bits (0,1) in C++. Every example I have seen has been working with has bytes, but I really need the actual bits. Is there an easy way to do this? The file ...
0
votes
1answer
15 views

Only last image uploaded from array when uploading multiple images in MYSQL with PHP

I'm trying to upload multiple images from a textbox to MYSQL database using PHP. But somehow it only inserts the last item from the array in the database. I tried uploading using one image, and that ...
3
votes
8answers
179 views

Pick parts from a txt file and copy to another file with python

I'm in trouble here. I need to read a file. Txt file that contains a sequence of records, check the records that I want to copy them to a new file. The file content is like this (this is just an ...
0
votes
2answers
51 views

Get the directory inside the jar

How to get the directory inside the jar? Let's say I have a jar called foo.jar, how can I make the jar be able to access a file that's like this foo.jar!/text.txt, whereas the class is like ...
0
votes
0answers
9 views

Javascript XMLHttpRequest doesn't read all text file content

I've been trying to download a text file using the code below: var req = new XMLHttpRequest(); req.open('GET', window.location.href.replace('index.html', '') + 'data/data.txt', ...
0
votes
1answer
21 views

Make XSL refer to external text file?

I'm trying to reuse a text file in multiple XSL files, but am unsure what tag to use to reference the file's contents. In other words, I want to copy the text out of a file, and dump it in a certain ...
0
votes
2answers
31 views

is this correct ? how to load bytes from a file? [duplicate]

I need to load bytes from a file using Java. is this right ? InputStream ips=new FileInputStream(file); InputStreamReader ipsr=new InputStreamReader(ips); BufferedReader br=new BufferedReader(ipsr); ...
0
votes
0answers
17 views

shell script to create a HTML index file in all subdirectories which links to the parent directory's file and to the daughter directorys' files

I want to have a Bash shell script which cycles over all subdirectories in a directory, creating a HTML file in each directory. This file, which is a HTML index file presenting a file listing of the ...
0
votes
1answer
36 views

Parse data from buffer of a bin file c

I have a bin file wich contais some data, i am suposed to read that data and store it in variables. The problem is i dont know how to parse the data from the buffer. FILE *file; char *buffer; //Abre ...
2
votes
2answers
46 views

rename file that user uploads javascript

I have the following html on a form: <input type="file" name="uploadField" /> When users click on the browse button they can select any file but I want to rename the file using the value of ...
0
votes
3answers
46 views

Bad idea to allow user to upload an ini file for parsing?

I am just brainstorming ways to allow a website user to submit information to a site without using web forms. One idea I have seen suggested is to allow a user to upload an ini file containing the ...
0
votes
3answers
54 views

Write real time data to file

How to write real time data to file in Java? I'm trying to get real time twitter feed to text file. Here is a code that I have written: public void onStatus(Status status) { User user = ...
1
vote
2answers
41 views

How to convert loop data into 1 single string

I create a function to help me create option list and write it into file, so I can use jquery $().load load the files. My problem is I need to convert loop's data into one single string. Therefore I ...
1
vote
1answer
54 views

Reading txt file from jar fails but reading image works

I have an issue which has been bothering me for days... I checked similar questions but couldn't find a solution. I use NetBeans IDE. I build the project jar file i.e "Clock.jar" which contains a ...
0
votes
1answer
36 views

Why is my ASP Page.Request.Files[] always empty? I've tried all posted fixes

We're 4 guys making a website for our final school project. We need to allow a user to upload a pdf. We're using Visual Studio 2012, and we have a Master page set up, and the whole login-process and ...
-8
votes
1answer
80 views

Saving file in a different location in iphone

I am unable to save a file to a different folder(outside app) since i have to retrieve the data from it after the application uninstalled.I have to get the data from that file after installing ...
1
vote
2answers
63 views

extract digits from filename

I am working with file-names in C++. I need to know how to extract certain part of file-name? File-names are like: /home/xyz/123b45.dat /home/xyz/012b06c.dat /home/xyz/103b12d.dat ...
2
votes
1answer
53 views

Codeigniter $_FILES not getting all files uploaded

I have a form which allows users to add more than one file by cloning the file input. However, when I submit the form and use 'print_r($_FILES)' it doesn't show up all of the files that I have added, ...
0
votes
2answers
34 views

Sharing violation on path for my logmanager [duplicate]

I'm using this code for saving logs in may C# monotouch application: public static void writeExeption(string message){ string path= StorageClass .LogsPath ; string filepath= ...
0
votes
0answers
16 views

Implementing a file system using FUSE - inodes?

I have an assignment which involves implementing a file system on linux using FUSE and the last 2 days not much progress has been made. As far as I understand it is important to have a way of keeping ...
0
votes
2answers
51 views

Add CSS to multiple html files

I have many html files, all named index.html but being in different subdirectories. These files are created by a software. After these files being created, I want to add a Stylesheet to all of them! ...
0
votes
0answers
17 views

File processing and writing in db

We have table "Files" where we store information's about Files (Type,size,path,etc) . What would be the most efficient way to get all files from folder where type is "jpeg" (type in table) ,change ...
0
votes
2answers
45 views

Get file to be read from another package

I need to catch a file that is package called files I try use getResourceAsStream or File file = getClass().getResourceAsStream("files/big.txt")); However, is not working. This saying to convert ...
0
votes
0answers
9 views

How do I copy a folder with lots of files in it to a NetBeans project?

I try dragging and dropping into the resources and that results in this: http://i.imgur.com/gVH6Pxn.png I don't want all those resources.. Hell I don't even know how I'd open the files contained in ...
0
votes
3answers
43 views

Insert content of a file to another file on Linux

I have two files. I want to insert the content of the first file(file1) to the second file (file2) between some codes (second file is a script). For example the second file should look like this ...
-2
votes
0answers
23 views

Formatting a file and saving as xml [closed]

To rephrase and add some additional info, I am coding in Java. I haven't started this phase yet so I have no code to show. I am wanting advice on how I could have java save a file into xml format that ...
0
votes
3answers
20 views

extract specific line from a file using awk

The data in the file: ... ... a b c d letters f g h i letters j k letters ... ... Using, awk '/letters/' file The result is: a b c d letters f g h i letters j k letters However I ...
0
votes
3answers
52 views

Import vs open for input file

I have an input file with variables that I would like to use in a python program. Is it better to bring in the variables using import: import imp inputData = imp.load_source(...) Or is it better to ...
-1
votes
2answers
66 views

c# writing to .bin binary file

I am trying to write integer numbers to binary file, but it keeps giving weird characters in the binary file. For example, I try to write 2000, but in the file i will get something strange. How do I ...
0
votes
2answers
49 views

Packing jar file into exists jar file

I'm writing a MP3 player in Java. If i will finish I want to pack all .class files in one .jar file. I don't want have player, which starts by console. If i open this one .jar file i want see player ...
0
votes
2answers
22 views

Windows CMD Search and Delete file by name

I have a website dump which has about half a gig worth of images which have been converted to various file sizes. The structure goes like: media/ 1/ 1.original.jpg 1.large.jpg ...
-1
votes
0answers
6 views

dividing a folder into subfolders based on other folders, but not coping/moving [closed]

I've got one folder with files like this: Folder 0: A, C, D, F, H, I, M, N, O, T, U, V, W, and then folders like: Folder 1: A, E, I, M, R, V and others Folder 2: B, F, J, N, S, W Folder 3: C, ...
2
votes
2answers
73 views

How are char ** objects saved?

Today, I asked me, how char ** objects are saved in memory or in binary files. I tested that with the following code snippet: char **array = (char *)malloc(3 * sizeof(char *)); array[0] = "Foo"; ...
0
votes
1answer
32 views

Reading text into a richtextbox

I have a problem, i wanna read out a Text file into a richTextBox, i use this method, to load it into the TextBox: private void richTextBox1_TextChanged(object sender, EventArgs e) { ...

1 2 3 4 5 428