Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

103
votes
10answers
44k views

Best way to copy between two Stream instances - C#

What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?
11
votes
6answers
2k views

prevent accidental object copying in C++

In our company's coding standard, we have been told to "be aware of the ways (accidental) copying can be prevented". I am not really sure what this means, but assume that they mean we should stop ...
9
votes
2answers
3k views

Progress during large file copy (Copy-Item & Write-Progress?)

Is there any way to copy a really large file (from one server to another) in Powershell AND display it's progress? There are solutions out there to use Write-Progress in conjunction with looping to ...
7
votes
1answer
1k views

How to copy a file using Paperclip

Does anyone know of a way to copy files with Paperclip using S3 for storage? Before I try to write my own, I just wanted to make sure there wasn't already a way to do this. Thanks
6
votes
5answers
393 views

Copying delegates

I was just reading a page on events on MSDN, and I came across a snippet of example code that is puzzling me. The code in question is this: // Make a temporary copy of the event to avoid possibility ...
5
votes
9answers
5k views

Using an interface to convert an object from one type to another?

Suppose I have two classes with the same interface: interface ISomeInterface { int foo{get; set;} int bar{get; set;} } class SomeClass : ISomeInterface {} class SomeOtherClass : ...
4
votes
2answers
81 views

How to know where on the SD card the images are being stored, DCIM/Camera, DCIM/100MEDIA?

I have a method in my application which retrieves the last saved image in my DCIM/Camera folder and copies it to another location on the SD card. I've just tested it on another phone and found that it ...
4
votes
5answers
112 views

Guidance for when to explicitly enable/disable copying in C++ classes?

A colleague is cleaning up a couple of libraries. In doing so he's been reading API design for C++ and it talks about explicitly enabling or disabling copying in C++ classes. This is the same thing ...
4
votes
5answers
285 views

Does putting data into std::vector in C++ create a copy of the data?

I am interested if creating a new std::vector (or calling its assign method) creates a copy of the data? For example, void fun(char *input) { std::vector<char> v(input, ...
4
votes
8answers
4k views

C# memcpy equivalent

I have 2 objects from the same type and i would like to shallow copy one state to the other. In C++ i have memcpy which is great. How can i do it in C#? The MemberwiseClone() is not good enough ...
3
votes
1answer
80 views

C++, 'coupling' of member pointers in multiple objects copied from the same original object

#include <iostream> #include <vector> #include <cstdlib> #include <cassert> struct s_A { bool bin; s_A(): bin(0) {} }; class c_A { public: s_A * p_struct; ...
3
votes
9answers
1k views

In what cases should I use memcpy over standard operators in C++?

When/where can I get a better performance results for using memcpy (cstdlib) (or what are the benefits using it)? For example: float a[3]; float b[3]; is code: memcpy(a, b, 3*sizeof(float)); ...
3
votes
2answers
7k views

Copying files across computers using SSH and MAC OS X Terminal

Im trying to copy my .profile, .rvm and .ssh folders/files to a new computer and I know how to use the cp and ssh commands but I'm not sure how to use them in order to transfer files from one computer ...
3
votes
2answers
334 views

Visual Studio 2008 project reference

I have a problem with the "Copy to output" functionality in Visual Studio 2008. Maybe I'm misunderstanding how its supposed to work. I have a solution with four projects: TestApp1 (Windows ...
3
votes
4answers
4k views

Copying an NSArray with mutable copies of the original elements

I am creating an array of dictionaries in a class. I want to return a copy of that array to any other object that asks for it. This copy that is passed to other objects needs to be modified without ...
2
votes
1answer
138 views

MySQL copy a user

I want to create two users on my MySQL test database, One with read-only access to tables relevant to generating reports, etc, the other with read-write access to the same tables. This is for testing ...
2
votes
6answers
4k views

How do I read hex numbers into an unsigned int in C [Solved]

I'm wanting to read hex numbers from a text file into an unsigned integer so that I can execute Machine instructions. It's just a simulation type thing that looks inside the text file and according ...
2
votes
3answers
856 views

Copying text from a textbox in C++

Specifically, a program is running and I want to extract the text from a text box inside the program. Generally, what methods/topics should I be using to "get inside" another .exe running on my ...
2
votes
4answers
311 views

How do I copy my entire working copy between hard drives?

Whenever I try to copy an entire working copy using simple drag and drop between two computers (e.g. from an old computer to a new one, or from one VM to another) in order to avoid having to ...
2
votes
4answers
214 views

Automatically Copying folders until a certain limit is reached

Greetings. 1 - Let's say I have about 500 folders of variable size with a total size of 100 GB. 2 - I want to distribute these folders automatically in other folders until the size of 700 MB is ...
2
votes
2answers
689 views

SQL Server: Copying column within table

what is the easiest way to copy the all the values from a column in a table to another column in the same table?
1
vote
1answer
51 views

How to clone Image?

I have an Image. I need to make a exactly copy of it and save it to BufferedImage, but there is no Image.clone(). The thing should be inside a calculating loop and so it should be really fast, no ...
1
vote
1answer
56 views

php and jQuery, copying files and displaying status

I'd like to ask if this 'synchronizing-scenario' is possible with php and javascript/jQuery... I have a lots of files with their names in yyyymmdd.png format on a server with no ftp access (e.g. ...
1
vote
2answers
68 views

Java: Copy collection with the use of Iterator

I have a method which as an argument has an iterator to the collection. Inside the method I want to copy the collection the iterator is "pointing to". However only the last collection entry is present ...
1
vote
6answers
36 views

Avoiding copying CSS styles that stay the same for different divs

#world1 { background: url(/images/home/1.jpg) 0 0 no-repeat; float: left; width: 2%; ...
1
vote
1answer
411 views

MYSQL Triple Join Performance help, Copying to Tmp Table

I'm working on a query for a news site, which will find FeaturedContent for display on the main homepage. Content marked this way is tagged as 'FeaturedContent', and ordered in a featured table by ...
1
vote
1answer
112 views

Copying png file from a folder to another

I have a PNG file in a folder, I want to copy this file to another folder. Is there a easy way to do this ? Example: //Creating PNG File file = new ...
1
vote
3answers
209 views

Properly copying data around in C#

I'm working on some simulation code in C#, and I have some code along the lines of: public void predict(Point start, Point end) { end.velocity = start.velocity + dt * end.acceleration; ...
1
vote
4answers
4k views

NSFileManager - Copying Files at Startup

I need to copy a few sample files from my app's resource folder and place them in my app's document folder. I came up with the attached code, it compiles fine but it doesn't work. All the directories ...
1
vote
2answers
313 views

How to copy subversion repository as a new directory to existing repository?

I have two existing subversion repositories on different hosts (host-a and host-b) and I'd like to copy one directory from repo A to repo B. Basically https://host-a/repo/some/path/moduleA should be ...
1
vote
2answers
54 views

Faster method for exporting embedded data

For some reasons, i'm using the method described here: http://geekswithblogs.net/TechTwaddle/archive/2009/10/16/how-to-embed-an-exe-inside-another-exe-as-a.aspx It starts off from the first byte of ...
1
vote
5answers
175 views

getting list without k'th element efficiently and non-destructively

I have a list in python and I'd like to iterate through it, and selectively construct a list that contains all the elements except the current k'th element. one way I can do it is this: l = [('a', ...
1
vote
2answers
765 views

Copy a file from /file to /folder/file

I have been working on an app for a while now, and it is supposed to copy files. I have the code: - (IBAction)moveFile:(id)sender { NSFileManager *filemgr; filemgr = [NSFileManager ...
1
vote
2answers
894 views

How to create target directory structure for copy files in classic ASP?

I want to copy a file to target directory. It is simple with copyFile command of File system object. But I need some enhancement like, If target directory is not exist then it'll create target ...
1
vote
8answers
1k views

Forms application “Not Responding” when copying large files?

I've got a file organizer application I'm working on. The files are regularly 500MB to 2GB. Everything works fine, but it is extremely annoying that the application "Stops Responding." What I'd ...
1
vote
4answers
5k views

copy the symbolic link in Solaris

I am trying to copy a link on Solaris OS but find that it does not simply copy the link instead copies the whole contents of the directory/file the link is poinitng to? Which is not in other OSes like ...
1
vote
1answer
106 views

Can I “transplant” a ClickOnce application from one PC to another?

My wife's old work computer has a ClickOnce-deployed app on it that she now needs on her new work computer. (It runs on her old computer fine, but her old computer doesn't run fine at all, hence the ...
1
vote
3answers
2k views

Copy array of objects to array of different type

Previously, I ran into a problem trying to share a type definition between my ASMX webservice and my .aspx page (webclient) ...
0
votes
0answers
8 views

Copying files across computers in different networks using scp Mac Lion [migrated]

I forgot how to do this and I found this other StackOverflow post about it but now I'm getting this error: ssh: connect to host xx.xx.xx.xx port 22: Permission denied lost connection I am ...
0
votes
1answer
35 views

Linux copying selected files from directories and naming them after the directory name

lets say I have (linux/unix) /directory/1/file.wmv /directory/2/file.wmv /directory/3/file.wmv I want to copy these .wmv files into a single directory /example/ with files named after directory ...
0
votes
1answer
22 views

cx_OracleTools CopyData.py - using without a PK constraint?

I'm attempiting to use cx_OracleTool's CopyData.py script to copy data between two tables on separate Oracle schemas/instances: http://cx-oracletools.sourceforge.net/cx_OracleTools.html When I run ...
0
votes
0answers
83 views

Copy row if cells equal text

I have an excel worksheet (Payments) which I would like to run some code that looks for any cell(s) containing the word "overdue" and then copying that entire row to a new worksheet (Final) Also if ...
0
votes
1answer
105 views

Android SQLite copy table to another table

I want to implement delete column in Android's SQLite. I want to make table copy without desired column, than delete former tablet and set name at new_one as a former name. I have made table to table ...
0
votes
2answers
55 views

Overwrite file in copying IF content to of them not the same

I have a lot of files from one side (A) and a lot of other files in other place (B) i'm copying A to B, there are a lot of files are the same, but content could be different! Usually i used mc ...
0
votes
1answer
149 views

How to copy a ksh associative array?

Is there a way to copy an associative array? I realize that regular arrays can be copied easily with a one liner as such: set -A NEW_ARRAY $(echo ${OTHER_ARRAY[*]}) but doing so with associative ...
0
votes
1answer
45 views

Copying visual studio projects between solutions

Whats the easiest way to copy a visual studio project between distinct solutions? can i just copy the folder containing the project data in windows explorer?
0
votes
0answers
38 views

Copying the content of One view into another view

If i have to copy the content of one view(any text) into other view which is placed in the same Xib File. Then what option i have to choose.... Is it possible to do that? Please Suggest me. thanks ...
0
votes
3answers
359 views

Why is copying files locally on a remote machine so slow?

Let's say I have \machinename\dll. I open \machinename in Windows Explorer and do a copy/paste on the dll folder to make a backup copy of it so there will be a "dll - Copy" folder in \machinename. ...
0
votes
2answers
61 views

Adding trec format tags to thousands of file

i need to add tags like text of file in thousand of files in a directory and i tried it using cat and outputing it to a stream of file using for file in * do cat ../gau > temp; //gau contain ...
0
votes
3answers
524 views

copying a huge table data into another table in sql server

i have a table with 3.4 million rows. i want to copy this whole data into another table. i am performing this task using the below query: select * into new_items from productDB.dbo.items i need to ...

1 2