Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
3k views

How to make my application copy file faster

I have create windows application that routine download file from load balance server, currently the speed is about 30MB/second. However I try to use FastCopy or TeraCopy it can copy at about ...
2
votes
1answer
188 views

How to copy a file to Documents in Team Explorer?

I have an add-in for Visual Studio 2008 (C#), which must select file from a local storage and copy it to becoming folder in Team Explorer. How to copy a file to Documents in Team Explorer?
1
vote
2answers
311 views

Automatic copy files to output during application building

There is Copy to Output Directory property for files in C# projects. But in VC++ projects it is absent. I know, that I can use Build events in VC++ and write there something like xcopy /y /d ...
1
vote
0answers
671 views

copy file from windows mobile to xp through shared folder in wi-fi network c#

I have : 1.pc with xp pro (sp3) 2.samsung omnia with windows mobile 6.1 3.wi-fi network in the xp i have shared folder. is there way in csharp programming to copy from/to the shared directory using ...
0
votes
1answer
43 views

maven copy bat file close to the jar

I am currently developing an maven based application. I want to make a bat file to run final jar. I've wrote bat file with call to java -jar... and put it into src/main/resources/runners folder. I ...
0
votes
1answer
82 views

Android how to copy folder with files on it from Internal memory to External

I need to find a way how to create files from specific folder in Internal Storage of my device to a specific folder in External Storage. Example : I have 50 image files in ...
0
votes
0answers
409 views

Copy multiple files from client to server c #

I need to copy "N" number of files from client to server with asp.net c # I've done something like that, but it is useless because it takes only server addresses Somebody help me .. Thanks ..!!! ...
-5
votes
1answer
83 views

CopyFileEx with progress c#, simple example please

Alright, I'm trying to copy a bunch of files. I already have my code but it's using File.Copy and the amount of files. Unfortunately I can't use this since there's a lot of small files and some large ...