Tagged Questions
To copy is to create a duplicate of an object without destroying the original. Commonly seen in text editors that will let you copy some text and paste it somewhere else.
84
votes
7answers
34k views
Standard concise way to copy a file in Java?
It has always bothered me that the only way to copy a file in Java involves opening streams, declaring a buffer, reading in one file, looping through it, and writing it out to the other steam. The ...
44
votes
10answers
35k views
force Maven2 to copy dependencies into target/lib
How do I get my project's runtime dependencies copied into the target/lib folder?
As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the ...
42
votes
12answers
24k views
Best way to copy the entire contents of a directory in C#
I want to copy the entire contents of a directory from one location to another in C#.
There doesn't appear to be a way to do this using System.IO classes without lots of recursion.
There is a method ...
41
votes
11answers
28k views
What is the difference between a deep copy and a shallow copy?
What is the difference between a deep copy and a shallow copy?
39
votes
11answers
59k views
How do I copy an object in Java?
Consider the below code:
DummyBean dum = new DummyBean();
dum.setDummy("foo");
System.out.println(dum.getDummy()); // prints 'foo'
DummyBean dumtwo = dum;
System.out.println(dumtwo.getDummy()); // ...
36
votes
5answers
107k views
Copy tables from one database to another in SQL Server
I have a database called foo and a database called bar. I have a table in foo called tblFoobar that I want to move (data and all) to database bar from database foo. What is the SQL statement to do ...
30
votes
1answer
6k views
Record file copy operation with Git
When I move a file in git using git-mv the status shows that the file has been renamed and even if I alter some portions it still considers to be almost the same thing (which is good because it lets ...
29
votes
4answers
3k views
Why should the copy constructor accept its parameter by reference in C++?
Why must a copy constructor be passed its parameter by reference?
25
votes
12answers
23k views
Java Collections copy list - I don't understand
I have an ArrayList and I want to copy it exactly. I use utility classes when possible on the assumption that someone spent some time making it correct. So naturally, I end up with the Collections ...
23
votes
4answers
15k views
Is there a function make a copy of a PHP array to another?
Is there a function make a copy of a PHP array to another?
I have been burned a few times trying to copy PHP arrays. I want to copy an array defined inside an object to a global outside it.
23
votes
8answers
1k views
What's the use of System.String.Copy in .NET?
I'm afraid that this is a very silly question, but I must be missing something.
Why might one want to use String.Copy(string)?
The documentation says the method
Creates a new instance of String ...
20
votes
4answers
29k views
How can I create a copy of an Oracle table without copying the data?
I know the statement:
create table xyz_new as select * from xyz;
Which copies the structure and the data, but what if I just want the structure?
18
votes
6answers
21k views
Move / Copy File Operations in Java
Is there a standard Java library that handles common file operations such as moving/copying files/folders?
18
votes
10answers
4k views
Is dd better than cat?
Suppose I want to clone my hard drive (hda) to another drive (hdb) in the same computer. As I see it, there's two easy, rough and do-it-yourself ways:
cat /dev/hda > /dev/hdb
and
dd if=/dev/hda ...
16
votes
5answers
12k views
Can I show file copy progress using FileInfo.CopyTo() in .NET?
I've created a copy utility in c# (.NET 2.0 Framework) that copies files, directories and recursive sub directories etc. The program has a GUI that shows the current file being copied, the current ...
15
votes
7answers
509 views
Efficient way to convert a 16-bit short array to a 32-bit int array?
What is the most efficient way to convert an array of unsigned short numbers (16 bits per value) into an array of unsigned ints numbers (32 bits per value)?
14
votes
4answers
10k views
How to copy a directory and its contents to an existing location using Python?
I'm trying to copy a directory and all its contents to a path that already exists. The problem is, between the os module and the shutil module, there doesn't seem to be a way to do this. the ...
14
votes
4answers
7k views
How do I create a copy of an object in PHP?
It appears that in PHP objects are passed by reference. Even assignment operators do not appear to be creating a copy of the Object.
Here's a simple, contrived proof:
<?php
class A {
public ...
13
votes
1answer
3k views
Secret copy to clipboard JavaScript function in Chrome and Firefox?
In the console windows of both Chrome and Firefox on Mac I can execute
copy("party in your clipboard!");
and the text gets copied to my clipboard. I have searched SO and Google and can't seem to ...
13
votes
2answers
9k views
How to copy an object in objective c
I need to deep copy a custom object that has objects of its own. I've been reading around and am a bit confused as to how to inherit NSCopying and how to use NSCopyObject. Could someone help me out? ...
13
votes
2answers
10k views
C# Using Reflection to copy base class properties
I would like to update all properties from MyObject to another using Reflection. The problem I am coming into is that the particular object is inherited from a base class and those base class property ...
13
votes
11answers
25k views
Copying files from one directory to another in Java
I want to copy files from one directory to another (subdirectory) using Java. I have a directory, dir, with text files. I iterate over the first 20 files in dir, and want to copy them to another ...
13
votes
3answers
5k views
How do I copy a folder and all subfolders and files in .NET? [closed]
Possible Duplicate:
Best way to copy the entire contents of a directory in C#
I'd like to copy folder with all its subfolders and file from one location to another in .NET. What's the best ...
13
votes
6answers
8k views
Can I make the Ant copy task OS-specific?
I have an Ant script that performs a copy operation using the 'copy' task. It was written for Windows, and has a hardcoded C:\ path as the 'todir' argument. I see the 'exec' task has an OS argument, ...
12
votes
5answers
9k views
How to copy directory from source tree to binary tree?
Copying directory from source tree to binary tree. For example: How to copy www to bin folder.
work
├─bin
└─src
├─doing
│ └─www
├─include
└─lib
Thanks.
11
votes
4answers
384 views
Fast way to copy dictionary in Python
I have a Python program that works with dictionaries a lot. I have to make copies of dictionaries thousands of times. I need a copy of both the keys and the associated contents. The copy will be ...
11
votes
9answers
399 views
Creating an easy to maintain copy constructor
Consider the following class:
class A {
char *p;
int a, b, c, d;
public:
A(const &A);
};
Note that I have to define a copy constructor in order to do a deep copy of "p". This has two ...
11
votes
5answers
36k views
jQuery: get the file name selected from <input type=“file” />
This code should work in IE (don't even test it in Firefox), but it doesn't.
What I want is to display the name of the attached file. Any help?
<html>
<head>
...
11
votes
4answers
17k views
How to copy from one file to another in Maven?
I have to create test war and production war, which will have a different log4j.properties file in the WEB-INF directory. I have these files log4j.properties (test war) and dev.log4j.properties (for ...
11
votes
7answers
9k views
How to say no to all “do you want to overwrite” prompts in a batch file copy?
By default, copying from the command prompt will prompt you to overwrite files that already exist in the target location.
You can add "/Y" to say "Yes to all" replacements.
But how can you say "No ...
10
votes
4answers
4k views
C++, copy set to vector
I need to copy std::set to std::vector
std::set <double> input;
input.insert(5);
input.insert(6);
std::vector <double> output;
std::copy(input.begin(), input.end(), output.begin()); ...
10
votes
5answers
9k views
Android: How to copy files in 'assets' to sdcard?
I have a few files in the assets folder. I need to copy all of them to a folder say /sdcard/folder. I want to do this from within a thread. How do I do it?
10
votes
8answers
581 views
How to test if a file is fully copied in .NET
I am monitoring a folder for new files and need to process them. The problem is that occasionally file opening fails, because system has not finished copying it.
What is the correct way to test if ...
10
votes
9answers
17k views
Copy Image from Remote Server Over HTTP
I am looking for a simple way to import/copy images from remote server to a local folder using PHP. I have no FTP access to the server, but all remote images can be accessed via HTTP (i.e. ...
10
votes
4answers
3k views
MSBuild - how to copy files that may or may not exist?
I have a situation where I need to copy a few specific files in a MSBuild script, but they may or may not exist. If they don't exist it's fine, I don't need them then. But the standard <copy> ...
10
votes
8answers
22k views
Hide Command Window of .BAT file that Executes Another .EXE File
This is a batch file in Windows.
Here is my .bat file
@echo off
copy "C:\Remoting.config-Training" "C:\Remoting.config"
"C:\ThirdParty.exe"
This works fine except the .bat file leaves the ...
10
votes
4answers
12k views
What is the best way in Perl to copy files into a yet-to-be-created directory tree?
What is the best way in Perl to copy files to a yet to be created destination directory tree?
Something like
copy("test.txt","tardir/dest1/dest2/text.txt");
wont work since the directory ...
9
votes
4answers
471 views
Limit speed of File.Copy
We're using a simple File.Copy in C# for moving our database backups to extra locations.
However on some servers, this causes the SQL server to pretty much stop working. These servers have very ...
9
votes
8answers
243 views
Who deletes the copied instance in + operator ? (c++)
I searched how to implement + operator properly all over the internet and all the results i found do the following steps :
const MyClass MyClass::operator+(const MyClass &other) const
{
...
9
votes
1answer
2k views
Does Scala AnyRef.clone perform a shallow or deep copy?
In Scala, does AnyRef.clone perform a shallow or deep copy?
9
votes
3answers
8k views
Generic C# Copy Constructor
What would be the best way to write a generic copy constructor function for my c# classes?
They all inherit from an abstract base class so I could use reflection to map the properties, but I'm ...
9
votes
5answers
10k views
How can I copy a directory recursively and filter filenames in Perl?
How do I copy a directory including sub directories excluding files or directories that match a certain regex on a Windows system?
8
votes
4answers
118 views
Is there anything built into .NET/C# for copying values between objects?
Suppose you have 2 classes like so:
public class ClassA {
public int X { get; set; }
public int Y { get; set; }
public int Other { get; set; }
}
public class ClassB {
public int X { ...
8
votes
2answers
157 views
Array objects initialization whose class has some ctor / dtor
I would like to realize array objects initialization by using the initialization statement as follows.
TestClass array[5] = {
TestClass("test1"),
TestClass("test2"),
TestClass("test3"),
...
8
votes
4answers
207 views
How can one detect copying a link in a browser?
Yesterday I had a chat with a taxi driver and upon mentioning that I am a programmer, he told me that a couple of days earlier he had experienced the following: upon trying to copy the URL from the ...
8
votes
2answers
5k views
Copy constructor in python
Is there a copy constructor in python ? If not what would I do to achieve something similar ?
The situation is that I am using a library and I have extended one of the classes there with extra ...
8
votes
2answers
296 views
If slicing does not create a copy of a list nor does list() how can I get a real copy of my list?
I am trying to modify a list and since my modifications were getting a bit tricky and my list large I took a slice of my list using the following code
tempList=origList[0:10]
for item in tempList:
...
8
votes
6answers
2k views
“display:none” content copied to clipboard, visible when pasted
I'm having a problem with non-displayed HTML elements being copied to the clipboard, and then displayed when the content is pasted into MS Word, Outlook, etc.
For example:
<p>Hello</p>
...
7
votes
3answers
654 views
NSMutableString as retain/copy
I have aa number of NSMutableString's in my app (almost 10-11); all defined as ivar/property
@property (nonatomic, retain) NSMutableString *str1;
I read somewhere that it is better to use "copy" ...
7
votes
4answers
376 views
Deep Cloning of Java objects (Not beans)
The project that I am currently working on has lot of objects that are serialized in order to get a deep copy of the the existing object. This works fine untill we have multiple calls at runtime in ...