Top "Copy" questions

To copy is to create a duplicate of an object without destroying the original.

Copying nested lists in Python

I want to copy a 2D list, so that if I modify one list, the other is not modified. For …

python list copy deep-copy
Restarting a thread in Python

I'm trying to make threaded flight software for a project in Python 3.4, in which I need threads to restart themselves …

python multithreading copy python-multithreading
Copying all elements of a map into another

Given var dst, src map[K]V I can copy all entries from src into dst by doing for k, …

dictionary go copy
Vbscript - Compare and copy files from folder if newer than destination files

I'm trying to design this script that's supposed to be used as a part of a logon script for alot …

vbscript copy compare last-modified datemodified
File copy using robo copy and process

I am creating a File copy program which will copy large number of files(~100,000) with size ~50 KB using ROBOCOPY command. …

c# windows file copy robocopy
XSL Copy nodes without xmlns

I have a specific problem. I have to transform an XML structure to other, where the base XSD is same, …

xslt copy xml-namespaces
How to copy a NSMutableArray

I would simply like to know how to copy a NSMutableArray so that when I change the array, my reference …

iphone xcode copy nsmutablearray deep-copy
php imagecopyresized vs imagecopyresampled vs imagecopy pros/cons

These all seem to do the same thing. What are the pros/cons of each. imagecopyresized() vs imagecopyresampled() vs imagecopy(). …

php image copy gd
fast converting Bitmap to BitmapSource wpf

I need to draw an image on the Image component at 30Hz. I use this code : public MainWindow() { InitializeComponent(); Messenger.…

c# wpf bitmap copy bitmapsource
strncpy or strlcpy in my case

what should I use when I want to copy src_str to dst_arr and why? char dst_arr[10]; char *…

c copy c-strings strncpy