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)

0
votes
1answer
24 views

Reading integers from files in Qt

I have a text file, with many lines that goes like this: 1,1 2 7,7 11,11 13,13 0,0 I would like to take every integer and assign it to a variable, using the text file system that Qt provides. ...
0
votes
1answer
12 views

Upload file from Android to webserver

what is the best way for uploading files(image) from android to webserver(i use codeingniter). in google i saw some methods with CustomMultipartEntity, Base64 and etc, but which way is better? and can ...
0
votes
2answers
17 views

Identify a file uniquely on the sdcard

Is there a way to uniquely identify a file on the sdcard apart from the file's absolute path? The File class does have an inherited method hashCode(), but I am not sure if that's fine.
0
votes
0answers
7 views

Internal links / “:file//” links

I'm trying to link people from my company's intranet site, to the shared directory. I had done this before ( on the page in question, which a copy of can be found here ...
0
votes
3answers
34 views

Compare file lines for match anywhere in second file

This is frustrating. I have 2 text file that are just a phone number per line. I need to read the first line from file1, and search file2 for a match. If there is a no match, write the line value to ...
2
votes
1answer
58 views

How can I read only parts of text file?

I have a PHP script that works a lot with large text files, mostly log files. The problem is that most of the time I only want a section of it, from one split point to another. But having to read a ...
0
votes
1answer
17 views

Android Save Image from Custom Camera to Custom Folder on SD Card

I have a custom camera that I would like to save the captured images from it on a folder in my sd card. I've viewed a few examples, but for whatever reason I'm just not getting anything to save ...
1
vote
1answer
32 views

Rolling file implementation

I am always curious how a rolling file is implemented in logs. How would one even start creating a file writing class in any language in order to ensure that the file size is not exceeded. The only ...
3
votes
1answer
29 views

Win API function for modifying file permissions

I'm searching for a way to modify the file permissions of a file in Windows 7 using C. For example: I would like to add read permissions for C:\a.txt for the user A, or remove write permissions from ...
0
votes
1answer
19 views

Trying to delete file in ProgramData. Access is Denied, even as Admin

My code: static public void DeleteFiles(string pathName) { //expand path if it has variables. pathName = Environment.ExpandEnvironmentVariables(pathName); Console.WriteLine("Trying file: ...
0
votes
1answer
19 views

Android: list mounted volumes

how can I get a list of all mounted volumes on an Android device? I want then to fetch the result in a String[] array. Of course I'm using Java. (or, is it possible without root to get the contents of ...
0
votes
0answers
12 views

uploading word signed document to sharePint Library

I´m trying tu upload a signed Word document to SharePoint Library, but when I Download the document uploaded from The Library the Sign are Broken!!!!. Any Idea how to upload a Signed Document? ...
0
votes
4answers
55 views

How Do You Write 16 Bit Integers To File?

Using C++, Windows 7, Intel CPU. What I want to do is map float values [-1, 1] to 16-bit signed values and write them to a file. The most obvious thing to do seems to be to multiply the float values ...
0
votes
3answers
65 views

Change the file extension for files in a folder in Python

I would like to change the extension of the files in specific folder. i read about this topic in the forum. using does ideas, I have written following code and I expect that it would work but it does ...
0
votes
0answers
12 views

how do i convert xml file to file type in eclipse

i am trying to use rest to show that i can create a File from an .xml document. this is my code below. whenever i run it, it will return "not working", implying that the file does not exist. the ...
0
votes
1answer
33 views

PHP overwriting file issues

I have a problem while overwriting a file. I tried everthing but SOMETIMES (maybe for a matter of time) nothings seems to work as it should. Here's the code: include_once "changevar.php"; ...
3
votes
1answer
25 views

JSF 2 download file with cyrillic name

I have a datatable with files and button to download the selected file. If the filename is with cyrillic symbols the browser says "Unknown file type" Example: i have file "асдасд.png" and i click ...
0
votes
0answers
13 views

how to increase posted content length in multipartrequest?

ERROR => "java.io.Io Exception: Posted content length of 2527989 exceeds limit of 1048576" I am using eclipse to develop one java application ,where I want to upload file from client machine to ...
1
vote
0answers
30 views

Fast way of detecting directory changes [duplicate]

Currently I'm comparing modification dates with some data stored in the DB, but it's still slow because I'm forced to do it for all files (scan entire dir structure): DIR1 file1 file2 DIR2 ...
-2
votes
1answer
33 views

Read txt file's lines in JS (Node.js)

I want to read a text file (.txt) using Node.js. I need to push each of text's lines into array, like this: a b c to var array = ['a', 'b', 'c']; How can I do this?
1
vote
2answers
42 views

Python File Exists

I'm new to python and just can't seem to get the code I'm writing to carry on processing if a file doesn't exist in the directory I point it to. Basically, I'm opening each text file to make a small ...
0
votes
1answer
20 views

VBA Can't write to file

fileName = "result.txt" 'set the file name for the result fileToWrite = FreeFile() 'assign next free file number to this variable Open fileName For Output As fileToWrite 'open our file 'write the ...
1
vote
5answers
66 views

File.Exists() always returns false on IIS

The file path that I'm checking with File.Exists() resides on a mapped drive (Z:\hello.txt). The code runs fine in debug environment, however in IIS, it always returns false var fullFileName = ...
-2
votes
1answer
22 views

Fire two command in different command prompt [closed]

I have tried all solution from this site.Actually i wan to create bathc file where i want to fire two commands .But after firing one command i don wan to close cmd prompt becaz first cmd is firinfg ...
1
vote
0answers
20 views

Last modified date of external file in android

I am developing an application in which there is one external file stored on SD card. This file is replaced from time to time. I want to know how I can detect whether the file has been replaced or ...
0
votes
1answer
55 views

Python if statement not working

I have an if/else statement in python, and I want to do nothing when it goes to the else statement. I am reading a list of words, finding the palindromes (eg 'abba') and printing them out. It ...
0
votes
0answers
21 views

Wanted to fire command on another machin

I want to fire the command below on another machine on some specific drive which is same n/w and can be pinged. Please help me in this struggle. And I actually want to fire it using a batch file. ...
0
votes
1answer
27 views

Performance wise: File.Copy vs File.WriteAllText function in C#?

I have file content in string and I need to put the same content in 3 different files. So, I am using File.WriteAllText() function of C# to put the content in first file. now, for other 2 files, I ...
0
votes
2answers
13 views

How do I make this Linux script

Ok so I have saved it as test.sh and chmod +x the script. nmcli con up id myvpn= /opt/google/chrome/google-chrome %U geany /home/crunch/downloads/lr.txt I execute it using terminal however it ...
-3
votes
1answer
52 views

How to create a file & folder in Java?

Okay, updated this right now As of now I have this: File saveGame = new File(Config.saveDir,Config.saveName); Now how would I create that into a text file? My saveDir has already been created ...
0
votes
1answer
10 views

How Django set path to files

In a django project, I want to open a file "file.png" (from images folder) in "worker.py". worker.py images file.png otherfile.png It works well using the terminal, but when the server call ...
0
votes
3answers
34 views

python how to transpose lines to column for only 7 rows at a time in file

I am a very novice python user so please pardon if I am violating any user ettiquette. Please help, I have a text file that looks something like this: ID: 000001 Name: John Smith Email: ...
0
votes
2answers
41 views

Android/Java - When a file exists, rename the file

I can't seem to get my logic right, I'm trying to rename a file to "photo2.jpg" if, say "photo.jpg" and "photo1.jpg" exists, and so on. At the moment when I run my code, and I take a picture, only ...
0
votes
0answers
13 views

Which MIME Type should I provide for Intent.ACTION_GET_CONTENT when picking a custom binary file?

I am currently developing an Android app which has the ability of importing database files an replace the current database file (like in a backup). Nowadays the file is a SQLite3 file but may change ...
0
votes
2answers
15 views

Where do I find the svn checkout files on Mac using terminal

I am running Mac Lion 10.7. I used terminal to execute the following: svn checkout http://android-log-collector.googlecode.com/svn/trunk/ android-log-collector-read-only everything appeared to ...
1
vote
0answers
8 views

Cannot copy to file share located in D drive

I have a weird permissions issue. I have a service running (made in c#) on a machine (Call this Machine A) that generates files and copies those files to a remote share on another machine (Machine B). ...
0
votes
0answers
15 views

Large Number of Small Files in mapr

Hi Does MapR support large number(4 Million) of small files (Each 20KB) How well can it manage metadata of these files? If I want to run a mapreduce which parses each of these files, what performance ...
0
votes
0answers
16 views

c# PostedFile null

I have been searching all of the web material to find an answer but i couldn't so i'm here: I'm trying to let the user choose wich way he wants to input data, well behavior of page is ok, problem is ...
0
votes
0answers
8 views

Solution Architecture for line matching, file editing and result gathering

The desired output A text file like so: 2013-05-25 Recommendations coverage : x% Products viewed with recommendations : y 2013-05-24 Recommendations coverage : x% Products viewed with ...
2
votes
1answer
58 views

How to check if file opened?

I wrote program and need my own file watcher (loop that checks if file can be opened). Something like this: while (loadedFiles.Count > 0 || isNeedReRead) { Thread.Sleep(1000); if ...
0
votes
1answer
17 views

Keeping users uploaded documents private

I believe this question is platform/technology independent, however I am using Ruby on Rails with the carrierwave gem. Users upload documents to my site, and I need to keep them private. I am ...
1
vote
2answers
34 views

How to ensure correct file permissions

In order to protect an application from begin used wrongly, I'm trying to check that its configuration files have correct permissions, so that the application can trust the content of the files not ...
0
votes
0answers
8 views

change modification time on files in phonegap

I'm using phonegap to develop a mobile app. I need it to synch files with a remote server, so I use the FILE api on phonegap and check the local files and their modification date. If it's older than ...
0
votes
1answer
38 views

can't upload a pdf file using php

I want to upload a file(pdf ) using php, I found a code in the internet and I just add the type of my files : application/pdf but it didn't work for the pdf file . (it works fine for the images). ...
0
votes
1answer
9 views

How to clear the contents of an opean file in *nix

I would like to know how the contents of a file can be cleared in *nix if it is open to write. (it may be log file for example)
1
vote
1answer
32 views

trouble greping logs and files [closed]

I've tried appending unsuccessfully in other threads .. I'll make my own one then :) Here's my main issue : I'm trying to exclude the variable named $exclusion from the resulting files texttomatch ...
1
vote
1answer
71 views

Read a binary file in Scala

I have some binary files which are written by a Java application in the following way: DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(new ...
-2
votes
0answers
86 views

Delphi custom single-file Virtual File System [closed]

How can I create a Windows NT (just Windows 7+ is fine) disk driver in Delphi for own/custom virtual file system? I need something simple (without all the actual data structures and such since I want ...
0
votes
0answers
26 views

Programming a PHP file search engine [closed]

I'm a beginner in php developing and I want to bring advanced file search functionality in my php web application. How could I realize that? I want to build a search form within my php web site ...
0
votes
0answers
28 views

PHP File Upload + ID from Form

i've put together a script and all seems well except for the actual upload of the file. Here is the php code that I have: <?php $allowedExts = array("gif", "jpeg", "jpg", "png"); $extension = ...

1 2 3 4 5 431