Questions tagged [transfer]

transfer is the process of moving data from one physical or virtual location to another

1194 questions
8
votes
1 answer

Android Development Usb Transfer

I am fairly new to Android Development and i have recently been exploring Usb Host. Would anyone be able to tell me how to use Bulk Transfer so that i can see what an external camera sees but instead show it on my tablet? Camera : Canon Powershot…
7
votes
1 answer

Data Transfer Objects in PHP, lots of classes with the same contextual name

Well I just figured out that there's this DTO pattern. I wonder if they are useful. I mean, should I map all my domain objects to their corresponding DTO objects and assign them to view instead to the domain objects themselves? I would, then, have…
PPPHP
  • 747
  • 10
  • 20
7
votes
3 answers

Android File Transfer cannot see a folder created by app

I've installed "android file transfer" on mac. My app creates a folder and creates a file in it (the permissions exist in AndroidManifest.xml), writes some data into this file. File exists, I can access it using standard file manager in my android…
Alexander Taran
  • 976
  • 3
  • 12
  • 25
7
votes
1 answer

Verify LFTP transfer success

I am using lftp to transfer files from local to a remote server which only allows SFTP access. I am using the following syntax to transfer the files : lftp -c "open -u $UN,$Pass sftp://$Server ; mirror -R $Directory" And this is working all fine…
Ashish Kaushik
  • 71
  • 1
  • 1
  • 4
6
votes
1 answer

How to mimic EQUIVALENCE when using Fortran allocatable arrays

I have 3 allocatable 1D arrays in a Fortran routine, VX(:), VY(:), VZ(:), all with the same size. I need to aggregate them in a 2D array named VARXYZ and send it to a routine that modifies the 'matrix'. The code below works but forces to double the…
Pierre
  • 97
  • 4
6
votes
2 answers

Copy sqlite database from device to PC

I have an android program that stores its information in a sqlite database. Will it be straighforward to copy that db file to a pc once the device is plugged via USB or should a special functionality be written in the program itself to dump the db…
xain
  • 13,159
  • 17
  • 75
  • 119
6
votes
1 answer

NSURLSessionDownloadTask stalls in background, slow to recover in foreground

I am creating a background session using this code... let configuration = URLSessionConfiguration.background(withIdentifier: UUID().uuidString) configuration.sessionSendsLaunchEvents = true configuration.isDiscretionary = false …
user250818
6
votes
3 answers

Determining a computer's maximum hard drive data transfer rate programmatically with C#

I have written a small WPF widget using C# that displays the current CPU activity, RAM used and disk activity as three small percentage type bars. I have used the following PerformanceCounters for this: (diskCounter PerformanceCounter returns…
Sheridan
  • 68,826
  • 24
  • 143
  • 183
6
votes
2 answers

I transfered iphone app to another account now I want to retransfer the app to previous account?

While transferring the app first time to one account to other its simply done by accepting the review by other receiving account.But when I tried to retransferred app its showing the As part of Family Sharing, this app is available to all users…
Arun
  • 163
  • 10
6
votes
2 answers

Paramiko equvalent of pipline controls and input/output pipes

I need a method of paramiko based file transfer with a lightweight SSH2 server (dropbear) which has no support for SCP or SFTP. Is there a way of achieving a cat and redirect style file transfer, such as: ssh server "cat remote_file" >…
gunter
  • 71
  • 3
6
votes
2 answers

How to transfer multiple files from FTP server to local directory using C#?

I can transfer one file from ftp server to local directory. using the following code using (WebClient ftpClient = new WebClient()) { ftpClient.Credentials = new System.Net.NetworkCredential("username", "password"); …
Anjali
  • 1,680
  • 4
  • 26
  • 48
6
votes
1 answer

How to transfer Image files over WCF?

I am trying to transfer a Image file from my data base to a self care portal. But every time I try to retrieve a file over size 80KB, the retrieved file gets corrupted and I am unable to open that file. The maximum size of file that I may try to…
user2186462
  • 61
  • 1
  • 2
6
votes
1 answer

Finite Element Library for Heat Transfer 2D

Hi I am currently COMSOL for calculating the Heat Transfer over time in 2D and I was looking for a library to do it in C++. Is the combination of libMesh and Gmsh the best choice? It would be really helpful, if you could please also provide an…
Yannis Assael
  • 1,099
  • 2
  • 20
  • 43
6
votes
2 answers

Transferring the events to parent view (Titanium Studio, IPhone)

I am new to mobile development with Titanium Studio. I would like to know if it is possible to transfer an event to a view's parent view. For example, say that I have a imageview namely imgVw added on top of a view namely parentView and I want to…
senthil
  • 1,307
  • 1
  • 11
  • 23
6
votes
3 answers

How can I transfer bytes in chunks to clients?

SignalR loses many messages when I transfer chunks of bytes from client over server to client (or client to server; or server to client). I read the file into a stream and sent it over a hub or persistent connection to other client. This runs very…
Manuel
  • 125
  • 3
  • 7
1 2
3
79 80