Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
2k 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 ...
5
votes
4answers
165 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
309 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 ...
4
votes
3answers
165 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 ...
4
votes
1answer
868 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" ...
3
votes
1answer
379 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 ...
3
votes
2answers
187 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 ...
3
votes
2answers
4k 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 ...
2
votes
3answers
136 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
107 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
2answers
618 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, ...
1
vote
0answers
51 views

Comma separated list with AvroStorage in Pig

I tried to load several files with AvroStorage in Pig by using a comma separated list. The statement I used is: test_data= LOAD 'repo_1/part-r-00000.avro,repo_2/part-r-00000.avro' USING ...
1
vote
0answers
57 views

Cocoa (Mac): splitting / combining a core data based application from / into multiple save files

I'm working in OS X Lion on a Core Data based Cocoa application where I need to be able to save different parts, lets say partA and partB, of the data model into separate files. I need to be able to ...
1
vote
2answers
55 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
1answer
155 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
389 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" ...
1
vote
2answers
446 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 ...
1
vote
2answers
180 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 ...
1
vote
1answer
301 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
428 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
4answers
79 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
3answers
293 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 ...
0
votes
1answer
26 views

Multiple file upload script with thumbnail creation not working, not getting errors

Script below is not working. Not getting any php error messages. Had asked a similar question, changed around thumbnail creation and if I had updated that question it would not have been seen at ...
0
votes
1answer
63 views

Codeigniter multiple file upload

In codeigniter 2 I have to do a multiple file upload. In my view input elements looks like this <input type="file" name="file[]" id="file_1" /> <input type="file" name="file[]" id="file_2" ...
0
votes
0answers
9 views

How could I Sort Files By Differences?

Lets say you have a program, and it has been customized for multiple customers. Many customers are using a program who's checksum is unique to that customer. Then lets say that management wants to ...
0
votes
1answer
82 views

How do I use a library in multiple classes w/o getting “multiple definition” errors

I am starting a new c++ project and I want to use Boost.Build / bjam. I'm getting "multiple definition" errors because, I think maybe, the jam file is not written correctly or I am not including the ...
0
votes
1answer
83 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.
0
votes
2answers
65 views

cannot get multiple uploaded files from $_FILES in php

I cannot retrieve multiple files in my php code from $_FILES. Here is the input form: <form enctype="multipart/form-data" action="file-upload.php" method="POST"> Upload the several ...
0
votes
2answers
70 views

Multiple files over at OutputStream

i have this assignment in my class where i have to do a Master/slave architecture, where master is a server that provides two files (password.txt and dictonary.txt), these files he sends to a slave ...
0
votes
2answers
158 views

Opening another .java file within a GUI

Short and sweet: I'd like to be able to run another .java file, from the click of a button in a GUI in Netbeans for Mac. A little more explanation: I am recreating a project I created when I started ...
0
votes
1answer
122 views

VB - Using DownloadFileASync (WebClient) for multiple downloads

I'm trying to download multiple files based on what a user has selected on a form. I have multiple checkboxes in place, so If a user would select Checkboxes 1,3,4 I would want the webclient to ...
0
votes
2answers
105 views

Can we Download Multiple Files and/or folder in c#

I am having a Windows application where I want to download multiple files at a glance from the server.Will it be possible? Also I want to download the complete folder having subfolders or files. I am ...
0
votes
1answer
42 views

Get LastWriteTime of Multiple Files in Directory

I'm a novice, working on an SSIS package and thanks to some assistance by talented folks here, such as yourselves, I've been able to get it to work, but am running into an issue. I need to pull data ...
0
votes
0answers
315 views

Can I distribute STSUPLD.dll (STSUpld.UploadCtl) with my app?

I want to use STSUpld.UploadCtl ActiveX for files upload and drag & drop in IE. However I see that it is not installed by default with OS, it is installed by Microsoft Office. Therefore I have ...
0
votes
1answer
73 views

Swapping file input elements with jQuery

I'm building a website where users can upload images. I don't want to use a flash plugin like SWFUpload or Uploadify, but I would like them to be able to upload multiple images at once. This would ...
0
votes
0answers
122 views

FTP Multiple files in one FTP session .NET

I am designing a system that needs to upload and download multiple files in a synchronization procedure. The problem I have come across is that .NET does not seem to be able to connect to an FTP ...
0
votes
0answers
98 views

Uploading file through JSF page with additional parameters

Is it possible make a multiple file upload accept additional user-submitted parameters like description of the files or tags? I currently have a JSF (JSF 1.2) page using JavaScript to clone whole ...
0
votes
3answers
147 views

Splitting up Code into Multiple Files

I know this has been asked a billion times before, but I'm still having trouble. I began with one main.cpp file that contained all of my code. Say it looked like this: int a = 0; void foo() { ...
0
votes
2answers
133 views

Multiple files upload chosen in the same browse file window (Ruby on Rails)

I've searched for "multiple files upload in ruby on rails" and the plugins that were suggested always displayed multiple <input type="file" ...> tags. I'm looking for something where I can ...
0
votes
1answer
218 views

Javascript .innerHTML resets my <input type=“file”>

I have a problem concerning multiple file uploads in javascript. I am trying to create my own multiple file upload by dynamically adding inputs. This is all easy as pie, but the problem is that ...
0
votes
1answer
146 views

curl - download only exists multiple files from commandline

How download only exists files with curl via commandline? I have code like this: curl http://host.com/photos/IMG_4[200-950].jpg -u user:pass -o IMG_4#1.jpg This command download all images from ...
0
votes
1answer
76 views

Why use Uploadify?

Could somebody mention the advantages of Uploadify file upload plugin over other options that are availabe e.g. swfupload, fancyupload etc.
0
votes
0answers
171 views

Configure URL Rewrite in nginx

Im trying to set up URL Rewrites for my MVC Framework but as this is the first time i have used Nginx I am having a little trouble. I have 2 access points for my application: /index.php ...
0
votes
2answers
176 views

Working with multiple code files and folders in Python

I am new to Python and I haven't figured out a simple way of separating code in multiple code files and folders. What I do today is: for each folder I create an __init__.py file. Sometimes it's ...
0
votes
2answers
432 views

fopen for reading/writing multiple files in a folder C

I have a question about how to use fopen() to read/write multiple files of one folder. I have 100 text files in a folder and I want to use a loop to open all the files (one by one) and write something ...
0
votes
1answer
187 views

Setup log4net appenders to create a file per context property or context stack level?

I am using log4net for logging calls to an API. Many calls. The methods I am calling have multiple megabytes of data for request/response pairs, and it is very hard to read logs that have multiple ...
0
votes
1answer
532 views

PHP Use zLib to Compress Multiple Files

$files = array("images/1.jpg", "images/2.jpg", "images/3.jpg"); foreach($files as $file){ $temp = null; $fp_in = fopen($file,'rb'); while(!feof($fp_in)){ $temp .= ...
0
votes
1answer
471 views

Execute multiple files at one go using a single bat file

I am using a batch file to execute multiple sql files. So I have created a bat file like: osql -S ServerName -U user -P password -d DBTest -i C:\SQLFILES\Test1.sql pause The above code executes a ...
0
votes
2answers
371 views

Constants and Classes Declarations Across Multiple Source Files in C++

I am sure this problem is asked a lot but I can't seem to find anything relevant. I have multiple source files in a C++ project. In typical fashion, there are multiple header files with class and ...
0
votes
0answers
443 views

Copy multiple files from client to server c #

I need to copy "N" number of files from client to server with asp.net c # I've done something like that, but it is useless because it takes only server addresses Somebody help me .. Thanks ..!!! ...

1 2