The multiple-files tag has no wiki summary.
11
votes
4answers
6k views
DIFF utility works for 2 files. How to compare more than 2 files at a time?
So the utility Diff works just like I want for 2 files, but I have a project that requires comparisons with more than 2 files at a time, maybe up to 10 at a time. This requires having all those files ...
7
votes
2answers
11k views
Multiple files uploading on Ruby on Rails 3
I would like to upload multiple pictures to my Rails 3 application. I am currently using Paperclip to upload a picture, and I have some post processing operations assigned to the model Photo.
I saw ...
6
votes
1answer
2k views
Uploading multiple files using Spring MVC 3.0.2 after HiddenHttpMethodFilter has been enabled
I'm using Spring version 3.0.2. I need to upload multiple files using the multiple="multiple" attribute of a file browser such as,
<input type="file" id="myFile" name="myFile" ...
5
votes
4answers
298 views
XSLT number only counts instances in current file of a multi-file document
I've been tasked with putting together a book (using XSL FO) from a number of XML-files, now I'm trying to number the figures in this book (simple numbering, no resets at chapters or whatever), my ...
5
votes
7answers
428 views
Search and replace hundreds of strings in tens of thousands of files?
I am looking into changing the file name of hundreds of files in a (C/C++) project that I work on. The problem is our software has tens of thousands of files that including (i.e. #include) these ...
5
votes
3answers
588 views
Linux File IO - Multithreading performance - writing to different files
I'm currently working on an audio recording application, that fetches up to 8 audio streams from the network and saves the data to the disk (simplified ;) ).
Right now, each stream gets handled by one ...
5
votes
0answers
988 views
Spring MVC multiple file upload with HTML5 multiple file form feature
I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping.
Here's what I did and my configuration.
Html5 form :
<form action="addFileSystemImage.foo" ...
4
votes
2answers
2k views
how would I detect if “multiple” attribute is supported for file input elements?
Internet Explorer does not support the multiple attribute for <input type="file" />. However, its not only IE that lacks this support... also certain mobile browsers do not support the multiple ...
4
votes
3answers
66 views
Automating object naming when importing multiple files in R
So, I downloaded a dataset containing 900 txt files, one for each biological sample. What I want to do is merge all of this data into one data matrix in R.
txt_files = list.files()
# read txt files ...
4
votes
2answers
62 views
Vim: Tabe multiple files?
I know about running
vim -p file1 file2 file3
But is there away to do something similar from within vim?
What I've thought about wanting to do is
:tabe file1 file2 file3
or (IMO worse, but still ...
4
votes
2answers
659 views
How to manage dependencies between scripts in multi-file Powershell Module?
I have a large amount of powershell code that I've written over the course of a long project; these scripts perform a wide variety of functions, and most of them depend in some way on others within ...
4
votes
1answer
3k views
Merge and sort multiple XML Files with XSL
The problem is to merge and sort multiple XML files with XSL and output valid HTML, viewable with Firefox >=3.5 and if possible IE >=7. The answer should be as simple as possible (performance is not ...
4
votes
1answer
3k views
Android upload multi files to server via http post
I need to upload file from Android client to an URL via HTTP POST.
If upload just 1 file, than it is OK for me. but my target URL page code is looks like following
<form action="file_upload.php" ...
4
votes
1answer
2k views
Rails 3.1, Paperclip, Multiple file upload
Anybody knows an example tutorial, how to upload multiple files (unlimited quantity) with paperclip & Rails 3.1? All examples I've seen are uploading fixed files count per one upload.
3
votes
4answers
425 views
How to specify if a T4 file should produce any output
I am using T4 for generation of some DTO classes + mappers.
I am splitting the files in a number of re-usable bits (some of which containing common methods, some others common procedures) and ...
3
votes
3answers
104 views
python improving time of find line and remove line in 3Gb file
first post,
be as critical as you want...
My problem:
I have a really large file of 140 million lines (file 1) and a slightly smaller file of 3 million lines (file 2). I want to remove those lines in ...
3
votes
4answers
4k views
PHP: how do I copy a temp file upload to multiple places?
how can I copy two times the same file? I'm trying to do something like this:
copy($file['tmp_name'], $folder."1.jpg");
copy($file['tmp_name'], $folder."2.jpg");
...
3
votes
1answer
988 views
PHP Image/Fileupload: crossbrowser, multiple files, drag&drop?
Living in 2012 I did not think a image upload using PHP would cause so many difficulties.
My requirements are:
multiple file upload
cross-browser functional
considering security issues
depending ...
3
votes
3answers
1k views
With R, loop over two files at a time
Hello my favourite coding experts,
I am trying to loop through two files at a time in R: i.e. take one 'case' file and another 'control' file, create a graph and dump it into a pdf, then take another ...
2
votes
2answers
82 views
Python - reading files from directory file not found in subdirectory (which is there)
I am convinced it is something simply syntactic - I however can not figure out why my code:
import os
from collections import Counter
d = {}
for filename in os.listdir('testfilefolder'):
f = ...
2
votes
3answers
111 views
Why is an enum declared in a separate file, in Java?
Why is this enum declared in its own file. Is there an advantage to this? Also how would I be able to put this in one of the 2 files. I really have no clue what I am doing. Please also explain this in ...
2
votes
2answers
593 views
Is it possible to split Greasemonkey user scripts into multiple files?
I'm creating a Grasemonkey user script that is getting really big.
Can I split it into several smaller files? If so, how?
Thanks.
2
votes
2answers
1k views
Uploading multiple images to GAE Blobstore using HTML5 multiple file input
I'm trying to store multiple image files to the GAE Blobstore using HTML5 multiple file input.
Since my web application will be used by photographers to batch upload photos, it is absolutely ...
2
votes
2answers
397 views
Single Source Code vs Multiple Files + Libraries
How much effect does having multiple files or compiled libraries vs. throwing everything (>10,000 LOC) into one source have on the final binary? For example, instead of linking a Boost library ...
2
votes
2answers
849 views
bottle framework with multiple files
I've read the Bottle Documentation but I can't find the example of how to use Bottle with multiple files. Below is the way I did and it's working but I'm not sure whether this is the proper way to go ...
2
votes
2answers
2k views
Android attaching multiple files from sdcard to email
How to attach multiple files in email in android?
Is there any permission required for multiple files attachment to an intent?
I am trying with putParcelableArrayListExtra(Intent.EXTRA_STREAM, ...
2
votes
1answer
1k views
Using ICSharpCode.SharpZipLib.Zip Subfolder in zip when its not suppose to be
I am using the library ICSharpCode.SharpZipLib.Zip;
My code is follows:
The path is root. \\ALAWP\\THIS\\ACORD\\
I'm zipping them to the ZIPDirectory
However when it's done the file is not named ...
2
votes
1answer
1k views
ColdFusion handling of HTML5 <input type=“file” multiple=“multiple” />
I am trying to implement an HTML5 input field that lets the user select multiple files to upload. I have the following in my form:
<form method="post" enctype="multipart/form-data" ...
2
votes
2answers
730 views
Inserting file input element using jQuery
I'm having trouble inserting file input elements with jQuery. What I want to happen is when a user selects a file using the input element, jQuery should hide that input and insert a new file input in ...
2
votes
0answers
206 views
How to download multiple files with android DownloadManager so that it appears in one queue
I'm using DownloadManager to download files. I know how to download one file and either use
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
or not. ...
2
votes
0answers
143 views
How to make context menu item to many files?
I make context menu item for images(for example), it should open my console application, using target file as string argument. When I use it for many files it opens many application copies, and for ...
1
vote
2answers
75 views
linking a map to a file with scala, to run a text based game
I'm taking a beginning programming class, and we're on to making text based games, more like read you're own adventures then actual games and I don't quite understand how to get the information form ...
1
vote
4answers
87 views
(Perl) Running the same code for multiple files
As of right now, I have 22 files that and 22 separate, but identical (in task), scripts for each file. Very basically, this is what I have:
file_1.txt, file_2.txt,..., file_22.txt
and for each file, ...
1
vote
1answer
72 views
memory exhausted php, does this happen because of 1 file or is it possible it happens because i run multiple files at the same time?
I've made a CSV parser but sometimes it returns a memory exhausted error. The CSVparser consists of a jquery loop that starts multiple php files with ajax to parse a file. Some of the files return the ...
1
vote
6answers
5k views
Uploading multiple images with one input field
i have created a photography website with an admin page that uploads photos to different categories in a mysql table. This much works, but i can only upload one file at a time and i'd like to be able ...
1
vote
1answer
993 views
How to separate a Inno Setup script into multiple files?
I have two setup scripts that share common code. It is possible to refactor them?
One way of doing that is having a file for common code which will be referenced by each script.
Is this possible?
1
vote
2answers
2k views
Need Free Multiple File Uploader Control with Ajax Update panel for Asp.net
I need a File Upload Control with multiple files in Ajax update panel. Dont Give me link of flash Uploader, it wont work with Ipad so it is not suitable for me. Please advice me some link to use with ...
1
vote
2answers
68 views
“undefined reference” error in a very very simple c++ program
I have a simple program, which I copied exactly from the example in http://www.learncpp.com/cpp-tutorial/19-header-files/ because I'm learning how to make c++ programs with multiple files.
The ...
1
vote
1answer
309 views
Drag-and-drop from my program to third-party program in vb.net
I am trying to open multiple files using a third-party program, by calling it from VB.NET. By default, the program I am using, through command line, only opens one file at a time - and if I call it ...
1
vote
4answers
272 views
Quick question on using the constructer with multiple files
I have this class header
//header for class.
#ifndef Container_H
#define Container_H
#include <iostream>
using namespace std;
const int DEFAULT=32;
class Container{
public:
...
1
vote
2answers
128 views
How do I bulk copy files with brackets in the filename using Powershell
$Basically what I'm trying to do is:
I'm pulling information from a .csv spreadsheet that contains a list of files that I need. The problem is, the directory they are in contains 16,000+ files! I ...
1
vote
1answer
325 views
How to Make a VBA Excel Program Work on Other Excel Documents?
I'm very new with VBA Excel and i only know the things as far as i need for this report formatting task. My code is almost completed, but what i wonder is, how can i make my program work on several ...
1
vote
1answer
177 views
Stuck wtih file input and validation error
I`m having troubles using carrierwave but it is not strictly related to it.
I have Attachment model:
class Attachment < ActiveRecord::Base
attr_accessible :event_id, :file, :file_cache
...
1
vote
1answer
1k views
Read and change multiple XML files in Excel (2007) VBA
I'm trying to read a folder full of XML files and change the reference number into a specific format which is Today's DATE(yymmdd), Initials, 8 digit reference starting at 00000001
e.g ...
1
vote
1answer
111 views
decompress multiple files from resource in c
i have a visual c project, where i want to include an archive containing multiple files in a directory structure
i would like to programmatically extract it to somewhere on the disk, using a ...
1
vote
1answer
429 views
sqlite multiple databases insert/update/delete
I was wondering how SQLite behaves when it's given multiple databases to insert/update/delete in at the same time? Does it spawn multiple processes which can in theory have better concurrency than ...
1
vote
1answer
485 views
Control multiple program instances - open multiple files problem
This shouldn't be an unusual problem, but I cannot find anything about it at google or at other search machine.
So, I've made an application using C++ and QtCreator. I 've made a new mime type for ...
1
vote
1answer
56 views
Macro Needed to Rollup Mulitple Excel Files
I have multiple excel files that are structured identically and are in a folder.
Each excel files data starts at d4 (multiple rows of data but all rows start on the subsequent d)
I need a macro to ...
1
vote
3answers
38 views
How to filter based on another file
Say I have a file in this format
file 1:
kk a 1
rf c 3
df g 7
er e 4
es b 3
and another file 2:
c
g
e
I want filter the second column based on file 2 and output a file like this:
rf c 3
df g 7
...
1
vote
1answer
55 views
Python: Run The Same Unittest module Tests For Multiple Files
I am attempting to create a simple framework that will discover all of the test cases from a specific directory (I am using unittest for these cases) and run each of these test cases against multiples ...



