Tagged Questions

0
votes
1answer
22 views

CamelContext.start() doesn’t block

Hi, I want to run a simple Apache Camel example that copies files from one directory to another: CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { public …
5
votes
7answers
234 views

Performant File Copy in C#?

I have a huge directory of about 500k jpg files, and I'd like to archive all files that are older than a certain date. Currently, the script takes hours to run. This has a lot to do with the very …
0
votes
4answers
100 views

java - effective files copying

hi. i would like to know which is the best way to copy large number of files.
0
votes
2answers
188 views

write to batch file to read text in a file and copy to other text file

I want read a text file on client workstation and copy that text to a text file with that workstation no. this process I need to do for 500+ workstations. I am having a NOde licence server and I …
3
votes
3answers
153 views

How do I copy a remote image in python?

I need to copy a remote image (for example http://site.com/image.jpg) to my server. Is this possible? How do you verify that this is indeed an image?
0
votes
3answers
650 views

How to copy file from local system to other system in C# (windows app)?

I need to load help files from my windows C# application and move/copy to other system (to its local drive). Application (same C# windows application) on the local system will use it for help. …
0
votes
0answers
201 views

Why do I get this ERROR_NO_TOKEN when I call WINAPI’s CopyFile on deep paths?

This is a follow up to my previous question. After taking the solution to the previous question, I got an error code (1008: ERROR_NO_TOKEN) when copying a file with a 1300 character path. After …
3
votes
4answers
1k views

Copy a file without using the windows file cache

Anybody know of a way to copy a file from path A to path B and suppressing the Windows file system cache? Typical use is copying a large file from a USB drive, or server to your local machine. Windows …
1
vote
1answer
163 views

Windows Explorer’s Busy cursors and give-up copy operations - why? [closed]

Can anyone please enlighten me as to why windows explorer is so, well, synchronous. Why are there so many operations that cause busy cursors. Also, can anyone understand why directory-copy needs to …