tagged [copy]

How to programmatically move, copy and delete files and directories on SD?

How to programmatically move, copy and delete files and directories on SD? I want to programmatically move, copy and delete files and directories on SD card. I've done a Google search but couldn't fin...

10 Dec at 11:26

CentOS: Copy directory to another directory

CentOS: Copy directory to another directory I'm working with a CentOS server. I have a folder named `test` located in `/home/server/folder/test`. I need to copy the directory `test` to `/home/server/`...

26 Sep at 10:2

How can I create a copy of an Oracle table without copying the data?

How can I create a copy of an Oracle table without copying the data? I know the statement: Which copies the structure and the data, but what if I just want the structure?

9 Dec at 12:3

How to copy text to the client's clipboard using jQuery?

How to copy text to the client's clipboard using jQuery? The workflow is simple: 1. You click inside a textarea. 2. The text is copied to the client's clipboard. 3. Display notice to the user. How do ...

Listview with copy-paste

Listview with copy-paste Is there an easy way of adding copy-paste for a listview, or should I just switch to DataGridView instead? My application is kinda like an address book, it contains emails, nu...

12 Jun at 18:23

How to copy files from 'assets' folder to sdcard?

How to copy files from 'assets' folder 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...

7 Feb at 01:23

How do strings work when shallow copying something in C#?

How do strings work when shallow copying something in C#? Strings are considered reference types yet can act like values. When shallow copying something either manually or with the MemberwiseClone(), ...

3 Feb at 10:29

Copy object properties: reflection or serialization - which is faster?

Copy object properties: reflection or serialization - which is faster? I have two objects of the same type and need to copy property values from one object to another. There are two options: 1. Use re...

Save PL/pgSQL output from PostgreSQL to a CSV file

Save PL/pgSQL output from PostgreSQL to a CSV file What is the easiest way to save PL/pgSQL output from a PostgreSQL database to a CSV file? I'm using PostgreSQL 8.4 with pgAdmin III and PSQL plugin w...

9 Apr at 19:0

Find and copy files

Find and copy files Why does the following does not copy the files to the destination folder? ``` # find /home/shantanu/processed/ -name '*2011*.xml' -exec cp /home/shantanu/tosend {} \; cp: omitting ...

15 Aug at 04:40

Generic C# Copy Constructor

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...

11 Jan at 22:56

How to copy all items from one array into another?

How to copy all items from one array into another? How can I copy every element of an array (where the elements are objects), into another array, so that they are totally independent? I don't want cha...

28 Apr at 22:12

Copy Arrays to Array

Copy Arrays to Array I have a little problem with arrays. I am new in C#. I try to copy an `int` array into two other `int` arrays with But, if I sort the `unsortedArray2`, the `unsortedArray3` is sor...

14 Jan at 09:59

Shallow copy of a hashset

Shallow copy of a hashset Whats the best way of doing it? Traverse the set with a foreach like this. Or use something like union like this.

How to copy file from HDFS to the local file system

How to copy file from HDFS to the local file system How to copy file from HDFS to the local file system . There is no physical location of a file under the file , not even directory . how can i moved ...

21 Apr at 11:50

Eclipse copy/paste entire line keyboard shortcut

Eclipse copy/paste entire line keyboard shortcut Anyone know the keyboard shortcut to copy/paste a line into a new line in `Eclipse`, without having to highlight the entire line? -- turns my whole scr...

Shallow copy or Deep copy?

Shallow copy or Deep copy? I am a bit new to these two methods of copying one object into the other. I am confused and unable to spot out the major difference between deep copy and shallow copy.. I ha...

5 Aug at 20:10

How to copy a row and insert in same table with a autoincrement field in MySQL?

How to copy a row and insert in same table with a autoincrement field in MySQL? In MySQL I am trying to copy a row with an `column ID=1` and the data into same table as a new row with `column ID=2`. H...

5 May at 13:6

Copy tables from one database to another in SQL Server

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...

Is there a function to make a copy of a PHP array to another?

Is there a function to make a copy of a PHP array to another? Is there a function to 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 ...

21 Jul at 01:23

CTRL-C doesn't work on Java program

CTRL-C doesn't work on Java program I found a weird scenario where if I start a java program and I want to exit gracefully with + it doesn't work/respond, I have to do a + on the program and this is n...

23 Nov at 13:23

How to clone ArrayList and also clone its contents?

How to clone ArrayList and also clone its contents? How can I clone an `ArrayList` and also clone its items in Java? For example I have: And I would expect that objects in `clonedList` are not the sam...

24 Aug at 16:1

HTML page disable copy/paste

HTML page disable copy/paste In a HTML page user should not be allowed to copy a text, but at the same time I want to give option for the user to select a particular text (for highlighting purpose). T...

13 Feb at 01:13

How to copy a file from one directory to another using PHP?

How to copy a file from one directory to another using PHP? Say I've got a file `test.php` in `foo` directory as well as `bar`. How can I replace `bar/test.php` with `foo/test.php` using `PHP`? I'm on...

31 Mar at 05:54

Copying one structure to another

Copying one structure to another I know that I can copy the structure member by member, instead of that can I do a `memcpy` on structures? Is it advisable to do so? In my structure, I have a string al...

8 Feb at 09:1