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.
0
votes
0answers
7 views
Uploadify destination folder problems
I am trying to use uploadify on my site. After following the instructions for implementing it exactly I cannot figure out why the files aren't finding their way to the folder, and i'm becoming ...
0
votes
0answers
5 views
Posting File with PHP/CURL to ASP.NET MVC 2 Controller
sorry if this might be a cheesy question, but unfortunately I cannot change the project setup.
I have a form on a php page, which is supposed to post some text fields and a file input to a MVC ...
0
votes
1answer
34 views
opening an excel file and writing to it in python
How do I open an existing excel file, write to it, and save it as the same filename. None of the previous data should be lost and the new data should be saved.
The pseudocode would be as follows:
...
0
votes
0answers
27 views
How to find a file when it's ext unknown and get his ext in PHP?
How can I find a file when it's ext unknown and get his ext in PHP?
I wrote this code but its not working (the if returns false)...
Thanks.
$pos_ext = array('jpeg', 'jpg', 'gif', 'png', 'tif', ...
-1
votes
4answers
57 views
Compare a text file line by line with a dynamic variable
I have a text file sample.txt which have following lines
sample1.txt
test.ppt
example.doc
content.pdf
I have a dynamic variable called field (example phpcookbook.pdf,sample1.txt) it should compare ...
0
votes
0answers
20 views
Error 2038 when Downloading File in Flex
So I've got a flex web app that makes a service call to the server when the user clicks a button. On the server, a file is made and a path string to the file is created using ...
-1
votes
2answers
36 views
php list all files and sort alphabetically
i'm using this function to list all files in a folder and its sub-folders
function printAll($dirName){
$dirs=array($dirName);
$files=array();
while($dir=array_pop($dirs)){
...
-1
votes
0answers
10 views
Can't able to play merged audio file android? [closed]
I am implementing sound recording application within that i want to merge voice recorded files into one file. so right now i am able to do that using following tutorial but unable to play that file ...
0
votes
0answers
20 views
DNS changed but old php files served and traffic crashed
I changed my website hosting yesterday and today things are not going well.
First, I see here that my dns change is complete (http://www.intodns.com/lesbifilm.com. It shows bluehost as server which ...
0
votes
1answer
69 views
Program crash when reading file the second time in c
Program crash while reading file the second time using c++ file stream
Hi, guy I was trying to build a Qt Gui application that lets the user inputs all data
and write it into file using c++ file ...
1
vote
0answers
8 views
Android ;download file from PC using DownloadManager
I following this tutorials http://blog.vogella.com/2011/06/14/android-downloadmanager-example/
to use Download files located on my Personal Computer
I change the url to ...
0
votes
0answers
18 views
Android : parseexception at Line 1 , column0 no element found?
The size of my app >1,5 GB
as the max size of apk is 50MB I should download required file in background while the first launch of my app
For this purpose I try to run this example
I have placed ...
-5
votes
0answers
50 views
File And Strings In C Programing [closed]
The program that get text from file then count its sentences, words,characters and paragraphs, then count number of repetitions of the given special word in the whole of the text and each ...
0
votes
4answers
38 views
sort a file by number of each line and insert it to another file
I have the next file: timesBetweenStartToEnd.txt that contains:
Starting at: 12:15:28 -> Ending at: 12:17:38 -> 130 Seconds
Starting at: 12:12:18 -> Ending at: 12:12:38 -> 20 Seconds
...
0
votes
1answer
18 views
PHP: Copy file to php-created-directory in Ubuntu didn't work
I have an ubuntu server. My objective is to create a directory within the root directory for the ftp user (suresh, say) copy some files from the latter to the newly created directory.
The problem is, ...
-3
votes
2answers
50 views
Copy and Move files c++/c [closed]
Hello im trying to make a program that takes a specified file copys the file and then moves the file to the a folder.I know how to move the file using rename function but i need to copy and move the ...
1
vote
1answer
15 views
Reading only modified data - node.js
In my project, i am using fs.watchFile for listening to the modification of the text file.
Requirement
Read only the last updated data
Note In text file data is always added, no deletion.
Sample ...
0
votes
1answer
20 views
How i can find the file format in linux programatically?
I need to upload the timezone data file to target board through FTP. The timezone data file name is renamed or modified as 'time_zone_info'. So i need to verify the uploaded file is timezone data ...
0
votes
1answer
21 views
convert contents of metadata file into variables list
Hi I m wanting to convert the contents of a file (in this case a Landsat 7 metadata file) into a series of variables defined by the contents of the file using Python 2.7. The file contents looks like ...
0
votes
0answers
41 views
File.delete() does not completely delete image blank image file left behind
So In my app you it takes a picture saves it to the SD card then user gets to chose what to do with it. Delete, save, or send. If you press delete. I call File.delete() it deletes the files when I go ...
0
votes
2answers
68 views
Resizing a file
I am surprised to say that I have not found a reasonable solution on how to resize a file using C++ standard libraries. It seems completely stupid and wasteful to have to read in the data from the ...
0
votes
0answers
36 views
Reading form local file and save into variable [duplicate]
I've got .txt file with many many words and want to open it in javascript (localy on PC) and save all content into string/array. Found solution with getScriptFile but it didn't run. Any ideas?:)
...
0
votes
1answer
27 views
set file colors on c++
I am drawing a chart in a text file and I want to set the rows color grey and white one by one but I couldn't find the function that can help me.
my compiler is code blocks on windows.
can anyone ...
1
vote
1answer
55 views
how to open a file by its full path given by user?
I have written this code. I want to ask from user the full path of a file and then go to that path and open file. But unfortunately the program cannot find the file. for excample I have created a file ...
1
vote
0answers
11 views
Wordpress Linux file permissions and group
I have a Linux server (Debian 7) with lots of users who needs Wordpress. When I create the users what group should they be in? Today I assign them to www-data.
Then they download Wordpress by SFTP and ...
-1
votes
1answer
36 views
Creating a file and copying its content to other file in c language
I need a C program to copy contents of one file to another file along with the following conditions :
1.) The file from which we read data may or may not exist.
2.) The file to which the data is ...
0
votes
0answers
23 views
Error When Save Bitmap To File on sdCard android
I have code to save Bitamp to file on sdcard but when i run this code it`s get this error
java.io.IOException: open failed: EACCES (Permission denied)
Code:
Bitmap photo = ...
-1
votes
1answer
32 views
AS3 Write to File
The following code only reads files rather than writing to them. I'm using Flash Player not Air and the code must save the data to an external website so FileReference and FileStream won't work.
var ...
1
vote
2answers
34 views
OS Independent File System Access
I currently find myself in the position of having to not only learn python on the job, but also to be using a Windows machine to do the coding to deploy to a Linux environment.
What I am trying to do ...
1
vote
1answer
35 views
How to assign a matrix from a text file to a variable in C?
I'm using the scanf() function to assign the matrix to the variable, but I want to call the matrix from a text file.
Here is my code:
int rows;
int columns;
float weight;
float step;
...
1
vote
1answer
15 views
Test if filetype has default application
Background: I have a readme file which is a .html file.
I am using _file.openWithDefaultApplication() to open this up in the browser.
This works perfectly and I thought was foolproof. Problem I have ...
0
votes
2answers
53 views
How to find the list of all the class name in a file in python?
I am currently writing a python script to display all name of all the python files in a package and also all the name of the class a file contains.
scenario
#A.py
class apple:
.
.
class ...
2
votes
3answers
31 views
Copy file in Java and replace existing target
I'm trying to copy a file with java.nio.file.Files like this:
Files.copy(cfgFilePath, strTarget, StandardCopyOption.REPLACE_EXISTING);
The problem is that Eclipse says "The method copy(Path, Path, ...
2
votes
3answers
44 views
open file by its full path
I want to ask user the full path where the file exists and then keep the path in an array. So during the program I want to open the file that is exists in that place.
but unfortunately I don't know ...
0
votes
3answers
41 views
send file of unknown type to “open with” dialog
In my application I have a saved file path which I use to try and open the file.
I am using something like this:
System.Diagnostics.Process.Start(filePath);
If the file has an associated default ...
0
votes
1answer
24 views
save imageview to image in specific folder
I want to save the imageview to image in specific folder , i try this code but it does not work
public void saveImage(View v){
View content = findViewById(R.id.iv_photo);
...
1
vote
1answer
35 views
Emacs lisp: `directory-files`
The function directory-files returns the . and .. entries as well. While in a sense it is true, that only this way the function returns all existing entries, I have yet to see a use for including ...
0
votes
1answer
22 views
How to read the properties file in app engine application?
I am reading properties file from the folder (/war/config/client.properties) in my google appengine application. It is working fine in my local server but it is not working in production mode, and it ...
0
votes
1answer
36 views
Recursively search files for information contained in excel cell and return path
Okedoke... I have an Excel spreadsheet with a filename in column A. The filenames listed in column A appear in one or more text files in one or more source directories.
I need Excel to search the ...
0
votes
1answer
12 views
Eclipse RCP: Create a file inside the plugin location
I'm trying to add a simple text file into a plugin at runtime but I don't know how to continue.
I know how to check if a file exists and how I can access it but I can't figure out how to create one.
...
0
votes
2answers
21 views
PHP, check if the file is being written to/updated by PHP script?
I have a script that re-writes a file every few hours. This file is inserted into end users html, via php include.
How can I check if my script, at this exact moment, is working (e.g. re-writing) the ...
0
votes
1answer
29 views
php glob - scan in subfolders for a file
I have a server with a lot of files inside various folders, sub-folders, and sub-sub-folders.
I'm trying to make a search.php page that would be used to search the whole server for a specific file. ...
0
votes
1answer
37 views
Parse text file and store fields in hash table in Perl
i have a problem with my perl script which read a text file and store the first field separated by a tabulation.
Here an example:
texte input file :
@ ries bibliothèques électroniques à travers ...
0
votes
0answers
58 views
C#: Write hight speed data(50M/s) to local disk in real time
My application has to writing received UDP data to disk continuously, and the speed is about 40M/s - 50M/s. My current logic is that all data is cached in a queue and Create a BinaryWriter to write ...
0
votes
1answer
30 views
FileStream not reading FileName input from external class
I'm trying to make a byte writer. So far I have made the program write the file header as a general test before I continue coding the writer. The problem is, after I select a file through coreForm's ...
0
votes
2answers
23 views
Reading manifest file contents of a JAR from Javascript
Is it possible to read manifest file contents from Javascript. Requirement is to upload a jar file, read the manifest file content and then display different fields based on manifest file in browser ...
0
votes
2answers
47 views
How do I read and write files to the server with Meteor?
I'm working on a NoDB CMS in Meteor, but I'm new to both Meteor and JavaScript frameworks.
How do I go about reading and writing files to the server?
0
votes
2answers
32 views
how do I move my uploaded file to different folder
Hi Hi trying to upload a file via a form move it to another folder and then print its name. But doesnt work don't know why.
<form method="post" action='exercice.php' id="form1">
...
0
votes
0answers
18 views
Input/Output with files in C++
I'm not really experienced in working with class variables, because of the accessing restrictions, so I'll use some help. I have a program which includes a class with a few member variables from type ...
1
vote
1answer
47 views
vb.net how to show progress in a do while loop?
I am making an application that involves appending a large number of files to the end of one single file... i am using the filestream class with a buffer to avoid loading the entire files into memory, ...



