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
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 = ...
0
votes
1answer
16 views
read the http links from a file and append it to a list
I am still a beginner.I have a 'link.txt' file with several links in it..
for example:
http://google.com
http://google.com
http://google.com
http://google.com
http://google.com
How do I read them ...
0
votes
1answer
30 views
encrypt file with php and public key
I generated a key pair (public and private), and from console by:
openssl smime -encrypt -aes256 -in backup.sql -binary -DEM -out outform backup_encrypted.sql public_key.pem
I encrypt the file ...
0
votes
1answer
18 views
EPiServer XForm - Attaching file to an email
I have been trying to follow this blog http://world.episerver.com/Blogs/Anders-Hattestad/Dates/2013/1/Upload-within-Xform/
The form upload works, however the file does not appear in the email, but is ...
1
vote
2answers
44 views
How to read and store 2 float values seperated by a comma from a file into two arrays where each float is stored in one array
my text file format is this:
3.2 , 5.6
444.2 , 555
112.34 , 32.3
i want to read the above information present within file name file.txt and store it in two arrays a,b where a will have the float ...
-1
votes
2answers
25 views
Php - Read and Write - Registration [closed]
I am building a basic registration and login system for an online store.
I am a complete php newbie and am struggling to get my head around the reading side of php. My registraion validates fine and ...
0
votes
1answer
23 views
PHP file upload make it go to /var/www/images [closed]
I don't know how to make it go to /var/www/images
Code:
<?php
$pass = "links";
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
-1
votes
2answers
76 views
I'm having trouble with the syntax for reading the file, help please? [closed]
I have to write a program that opens the file and reads each line until EOF is reached. Each line in the file has two double values representing a point in two-dimensional space. And for each of these ...
0
votes
1answer
45 views
Trouble with Python: Opening an app/saving a file
I am a bit new to coding, I am trying to improve my skills. My preferred programming language is python. But I do need help with this bit of code. I am making an app called User Helper for my own use. ...
0
votes
0answers
20 views
PHP cURL login to asp site all fine but fails to download file
Having an ASP site I manage to login and browse through any page using PHP cURL with no issue. But when it comes to download some PDF files I get stuck.
Doing this on Firefox following Headers are ...
1
vote
4answers
61 views
How to create a .java file using java?
I want to create a .java file but I'm doing something wrong as when I try to create it, I simply get a directory named example.java.
What I want to do is actually create a file with the extension ...
-1
votes
3answers
50 views
If I had a text file of values, how would I read that file?
I have to write a program that takes a single command-line argument. The argument should be the name of a file to open for reading (And if the argument is not provided or the file cannot be opened, ...
0
votes
2answers
54 views
Won't write to a text file
I have created this to a form. If receives all the info and seems to work, but when I check the text file nothing is written there, and it only lets me run the form twice before erroring out. Anyone ...
0
votes
0answers
9 views
Where to copy the file to make it launch on system startup?
I want to copy a file, which would launch on system startup as soon as possible. I need to make it work on Windows XP, Windows 7 or other versions and maybe on safe-mode(if possible). Is there such a ...
-2
votes
3answers
41 views
A better way to convert a directory of files into bytes
I have been messing with this for some time and it's getting better and better, but it's still a little slow for me. Can anyone help speed this up / make the design better, please?
Also, the files ...
0
votes
0answers
80 views
Cannot read file using Scanner, never gets into loop
I am trying to read a text file in order to copy some parts of it into a new text file.
This is how I create my Scanner item :
// folder
File vMainFolder = new ...
-1
votes
0answers
8 views
How big corporations like flickr, google images handle and folder their images?
I searched about this a lot and It really makes me curious that, how big corporations store their pictures ?. Is it folder based ? or picture datas that are stored in database ? or tons of folders ...
0
votes
2answers
37 views
Extracting data from a file that was read into memory
I have a binary data file that contains 2d and 3d coordinates in such order:
uint32 numberOfUVvectors;
2Dvec uv[numberOfUVvectors];
uint32 numberOfPositionVectors;
3Dvec ...
-2
votes
0answers
11 views
Check file lock periodical open and close [closed]
I need a batch script that would look for file lock on a text file periodically written to by another application.
And when its done move it to another folder.
1
vote
0answers
14 views
Which APIs are used by explorer.exe in Windows 7 to list files?
I am coding a rootkit-like program which hooks functions used by Windows to list files in a folder.
I know that in Windows XP explorer.exe uses FindFirstFileW / FindNextFileW each time we open/update ...
0
votes
1answer
28 views
Remove everything on the page except anchor tags
I am trying to create a php program that will allow the user to mass email users, given a certain page. I am loading in a page via php, using the file_get_contents() function.
The site has a list of ...
0
votes
1answer
41 views
Special characters in file name cannot be found
I have a list of files that I want to check if they exist with PHP
Here is a screenshot of the list (using Options +Indexes)
In PHP, I tried
$name = iconv("utf-8", "utf-8//TRANSLIT", $name);
...
0
votes
1answer
17 views
Jquery file picker from server
I'm making a form in php. I want the visitor to either upload an image (that part is done) or select one from the uploaded files. Is there any cool jQuery/php script that will solve this?
I'm ...
1
vote
1answer
29 views
Reading File from Internal storage with No Read/Write Permissions?
I have a file on Internal Storage on the path e.g. /data/data/<package name>/folder/myfile
I don't have permissions to access this file but for my implementation I have to read this file. for ...
0
votes
2answers
21 views
FileHandler Java with Windows
I am trying to write an Application which lists down the files from the server . Now I want to give users to open any file from the list (Windows) with any editor for example a text file and User ...
0
votes
0answers
32 views
The upload path does not appear to be valid”. Codeigniter file upload
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'doc|docx';
$config['max_size'] = '400';
$config['max_width'] = '1024';
$config['max_height'] ...
0
votes
2answers
35 views
Path For XMl File in Java
I don't normally post on these sites as usually you find find what you're looking for somewhere on the net. however, after reading every single word of the documentation and reading about a million ...
0
votes
2answers
18 views
regex to match any filename mask
I have to write a regex that will match any sequence filename masks, eg:
Three test cases:
object.scrn_1-2_0006 - should match object.scrn_1-2
object.scrn0006 - should match object.scrn
object0006 - ...
1
vote
2answers
61 views
Recursive open files in Perl
I have a Perl script to count how many times an expression appered in a file, in this particular case it counts everything found between '<' and '>' because i wanted it to parse .xml files.
...
1
vote
2answers
54 views
Gaining control on the name of the temp file created in Java
Is there any way to control the random digits appended to a file name when a tempFile is created ?
For eg. if I write File.createTempFile("abc",".pdf"), it creates a file with name ...
1
vote
3answers
47 views
PHP Dynamic text file creation
I have this code
$ext = ".txt";
$filename = $namef.$ext;
if(!file_exists($filename))
{
$file = fopen($filename,"w");
fwrite($file, $privatekey);
fclose($file);
chmod($file,0777);
}
$namef is any ...
0
votes
2answers
16 views
read a big text file and copy the selected lines to another file
I need to create a database table from here:
So, I copied the same file to a server folder using curl command. I need to retrieve 00-00-00 (hex) XEROX CORPORATION, 00-00-01 (hex) XEROX CORPORATION ...
0
votes
1answer
78 views
FileNotFoundException while creating a file with java in Ubuntu?
I have been trying to convert millions of xml documents to txt files. After reading each xml I parse the required content and write it into a new text file in a new drectory.
But when I process some ...
-1
votes
1answer
52 views
Read a file and write to it while open [closed]
Do any of you know if it is possible to have a file open (say a .txt file) and still have your software write to it?, if so, what properties do you need to set?
1
vote
0answers
29 views
POST a file read from file system as multipart to REST service in PHP
I am trying to read a file(image file) using PHP from file system as a multipart file and POST it to a REST service. I am not sure how to do this really as I reading it from a file system.
Well the ...
1
vote
1answer
40 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 ...
-5
votes
0answers
27 views
Decode this bunch of text? [closed]
Hey I've been searching the web on how to decode this text but all I seem to find are tutorials on winzip etc etc
Any help would be greatly appreciated. Thanks
14,20,21,2,2013
Esp atnefcp zq esp ...
0
votes
0answers
19 views
Unable to see files uploaded into my servers /tmp folder but able to process them.
I have a simple form that allows users to upload forms into the server using the POST method. I am able to process this file and store it into an array using the following command :
if (($handle = ...
0
votes
4answers
79 views
Turning a string into multiple arrays?
I'm a student who is learning java (just started this year. I just graduated so I can't ask my high school teacher for help, either), and I need some help on how to turn a string into multiple ...
-2
votes
0answers
29 views
Searching for a record using a single entity in a file [closed]
I have a file that has the following data(name,id,age,D.O.B), I want my code to be able to search for a record in a file using either its name, id, age etc and then display records that contains what ...
-1
votes
3answers
66 views
Deleting current file in vim
How can I delete from the disk the current opened file within vim? Would be nice to also close the buffer.
I see you can use NERDTree for that, but I don't use this plugin.
-1
votes
1answer
29 views
get file properties like artist and album name in php [closed]
Does any one know any php function which can be used to get properties of music files such as album, artist, length etc.
I know functions like filetype($file), fileperms($file), fileowner($file) and ...
0
votes
2answers
51 views
$_FILES operations execute even though IF statement is false
I am trying to add a file upload ability to an internal company ticketing system. The code works fine for the actual upload. The problem I am running into is that if there is no file, the code still ...
0
votes
0answers
40 views
Upload file in a location specified in tomcat server.xml conf
I have an upload form and I would like to save the file in my filesystem.
First, I tried to create the path where the uploaded file will be saved:
File dest = new File("/front/uploads/images");
...
1
vote
1answer
25 views
batch script to read text seperated by delimiter
I have a text file which contains a list of URLs seperated by comma.
e.g. URL1,URL2,URL3 etc.
I have a batch script which just launches the url in the text file.
for /f "delims=," %%a in ...
-1
votes
3answers
40 views
vb.net get file names in directory?
I have the following code.
Dim text As String = IO.File.ReadAllText("C:\Example.xtp")
This code is specific to a single file, however I would like to file.readalltext for every file in a particular ...
1
vote
5answers
114 views
File Binary vs Text
Are there some situation where I have to prefer binary file to text file? I'm using C++ as programming language?
For example if I have to store some large text file is it better use text file or ...
-1
votes
1answer
31 views
file upload excel exception
I have a problem in uploading excel file, my Java code below
File newFile = new File("C:/sample.xls");
int firstColNo = 0;
int row = 0;
Cell cell;
Workbook wb = Workbook.getWorkbook(newFile);
Sheet ...
0
votes
2answers
41 views
VB.NET Delete multiple files
I'm trying to delete multiple files in same folder with vb.net, but I haven't succeed yet. Help please?
I tried
Dim FileToDelete1 As String
Dim FileToDelete2 As String
Dim FileToDelete3 As String
...
0
votes
1answer
14 views
Load Texture from File in HLSL
I want to blend (in a PostProcessing-Shader) the camera output with a texture. Is there a method to load a texture? something like
texture mytexture = "file.bmp"
sampler2D smp = sampler_state {
...






