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
1answer
7 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 ...
0
votes
0answers
5 views
Check file lock periodical open and close
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
9 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
27 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
37 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
24 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
19 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
21 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
29 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
15 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
45 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
51 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 ...
-3
votes
0answers
44 views
How to find end of rows and columns in a text file in java?
In my text file, I have rows and columns of data.. How do I iterate it in a loop...like..
for(i=0; here,iterate until the last row(or end of the text file) is processed;i++)
{
for(j=0;iterate until ...
1
vote
3answers
46 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
14 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
2answers
67 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
49 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
23 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
39 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
18 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
67 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
53 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
48 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
36 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
24 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
38 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
113 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 ...
0
votes
1answer
27 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
33 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
13 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 {
...
0
votes
1answer
29 views
Send file to remote php from local python in $_FILES
Preface: I started learning Python one month ago, please don't yell at me :)
I have a full developed site written in PHP, with all the functions I need with pages to insert "stuff" in the database. I ...
0
votes
1answer
21 views
How to compare array from file with sql database query?
I tried to select all columns from my table at database that is same as on row in array in file. For example:
TABLE:
id name
1 A
2 B
3 C
FILE:
A
B
I want to select only A and B.
My source:
use ...
0
votes
0answers
25 views
jQuery load(function) for an image file
I'm making a website with lots of background images and (of course) it affects the speed ratio and the bandwidth.
I have a page wich contains 17mb of images data. Most of it is hidden and only ...
1
vote
2answers
18 views
Windows Batch script tp process flat files
I want some help in writing Windows Batch Script.
I have a Delimeted Text file with data as shown below:
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6.
I want to write a ...
0
votes
3answers
43 views
c# .dat file assign to variable
how can i assign a to a variable, which is located at the same project, for example at my project i created a folder named App_Data and for example the file is file.dat , how can i assign the file at ...
1
vote
2answers
61 views
bash on Linux, delete files with certain file extension
I want to delete all files with a specific extension - ".fal", in a folder and its subfolders, except the one named "*Original.fal". The problem is that I want to delete other files that have the same ...
2
votes
2answers
45 views
Java. How to append text to top of file.txt
I need to add text to beggining of text file via Java.
For example I have test.txt file with data:
Peter
John
Alice
I need to add(to top of file):
Jennifer
It should be:
Jennifer
Peter
John
...
0
votes
1answer
38 views
Howto download file from Drive API using Python script
I'm working on simple script in Python which could download and export all files from Google Apps domain Drive Service. I was able to create Drive session using service account and I'm getting JSON ...
1
vote
0answers
12 views
How can I put into a variable some “external text” using HTML5 and Javascipt?
I need to load some text (from where is possible: remote, local, whatelse) into a javascript variable, how can I do it?
I read several posts, questions, comments and threads about browsers not being ...
0
votes
1answer
20 views
Write file data directly to a property in my class
I have a class that I use to send file data to and from my database, My question is. How do I write file data directly to a property in my class without first saving the data to a memoryStream. Would ...
0
votes
2answers
33 views
Staying Browser File after submitting - PHP
<?
$img="";
$comment="";
if(isset($_POST['save']))
{
$e="0";
$comment=trim($_POST['comment']);
if($comment=="")
{
$sel5="<--Enter Ur Opinon";
$e="5";
...
-1
votes
0answers
14 views
Grab file then download html [closed]
My server does not want to work with me at all... I have a file /home/stuff that is a symlink to /var/www/html/stuff
I want to be able to download the contents of /var/www/html/stuff but I get a ...
0
votes
1answer
15 views
Script to Specify the FTP File Path
Anyone know if I can specify the file path for an FTP upload or script it if there isnt an FTP option to do this in a program? I'm using ScreenPresso Screenshot Software but the FTP Upload doesnt have ...
2
votes
3answers
68 views
How can i write to a txt file with multiple lines?
I made an online survey and I keep track of all the inputs in a txt file.
Below are two questions, and everytime someone answers a question, I want to append the answer to the coresponding question.
...
0
votes
0answers
7 views
Multiple file upload blueimp “sequentialUploads = true” not working
I have to store multiple files in a Database. In order to do that I am using jQuery Multiple File Uplaod control written by blueimp. For the server language I use asp.net. It uses a handler – ashx ...
-1
votes
1answer
30 views
groovy: parsing files with different extensions and using if/else
I have a script:
def tmn_file = ~/.*\.tmn/
def tmc_file = ~/.*\.tmc/
def newTerm = new Properties().with { props ->
new File(inputPath).eachFile(tmn_file) { file ->
file.withReader ...


