Top "Copy" questions

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

Wait Until File Is Completely Written

When a file is created (FileSystemWatcher_Created) in one directory I copy it to another. But When I create a …

c# file io filesystems copy
Powershell 2 copy-item which creates a folder if doesn't exist

$from = "\\something\1 XLS\2010_04_22\*" $to = "c:\out\1 XLS\2010_04_22\" copy-item $from $to -Recurse This works if c:\out\1 XLS\2010_04_22\ does exist . Is …

powershell copy powershell-2.0
AWS S3 copy files and folders between two buckets

I have been on the lookout for a tool to help me copy content of an AWS S3 bucket into …

amazon-s3 copy amazon-web-services
Copy data from one existing row to another existing row in SQL?

I have a table full of tracking data for as specific course, course number 6. Now I have added new tracking …

sql insert copy row
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 …

php copy clone shallow-copy
How to properly -filter multiple strings in a PowerShell copy script

I am using the PowerShell script from this answer to do a file copy. The problem arises when I want …

powershell filter copy powershell-2.0
Copy folder structure (without files) from one location to another

I want to create a clone of the structure of our multi-terabyte file server. I know that cp --parents can …

linux file copy directory
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 …

objective-c copy
fast way to copy formatting in excel

I have two bits of code. First a standard copy paste from cell A to cell B Sheets(sheet_).Cells(…

vba copy format rtf
How do I copy a hash in Ruby?

I'll admit that I'm a bit of a ruby newbie (writing rake scripts, now). In most languages, copy constructors are …

ruby serialization hashmap copy deep-copy