Tagged Questions

7
votes
3answers
620 views

How to copy a file while it is being used by other process

Does it is possible to copy a file which is being using by other process at the same time. cause when i am trying to copy by this code it showing error. System.IO.File.Copy(s, destFile, true); ...
6
votes
2answers
112 views

Does File.Copy prevent another app from writing to the file?

I want to copy some text files, that are written by another app, but I don't want to do anything to prevent the other app. from writing to these files. I am using File.Copy, from the System.IO ...
6
votes
8answers
892 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 ...
5
votes
4answers
4k 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 ...
3
votes
1answer
53 views

Copy a file with its original permissions

When using the File.Copy() method the file is copied to its new directory however it loses its original permissions. Is there a way to copy a file so that it doesn't lose the permissions?
3
votes
3answers
128 views

Copying files behind shortcuts in C#

I am using C# to access the most recent files on a system and copy them via Environment.SpecialFolder.Recent The recent folder in Windows however just creates shortcuts to the actual location of ...
2
votes
1answer
176 views

How to bring up the built-in File Copy dialog?

I'll be copying a large file over the network using my winforms app and I need to show some kind of progress bar. Rather than cook up my own copy routine, I was thinking that it might be better to ...
2
votes
4answers
3k views

File Copy with Progress Bar

I used this code posted here (the one that nobugz posted) in copying files and displaying the status in progress bar. Now problem is I wanted to continuously increment the value of the progress bar ...
2
votes
3answers
4k 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. ...
1
vote
2answers
93 views

Algorithm for copying files over network efficiently

I know there are several programs out there that will sync files over the network. Non of them do what I have been thinking of. Let me explain what I want to achieve... In my network several ...
0
votes
2answers
152 views

Copying Files Recursively

I found a small snippet for doing a recursive file copy in C#, but am somewhat stumped. I basically need to copy a directory structure to another location, along the lines of this... Source: ...
0
votes
2answers
173 views

How to copy Access Database File?

I want to copy existing Acccess Database file from my project into another location using SaveFileDialog in C#. I wrote following code segments: SaveFileDialog s = new SaveFileDialog(); s.Title = ...
0
votes
5answers
2k views

File.Copy and WPF

I have a little problem with the File.Copy method in WPF, my code is very simple and I get an exception when I run it, Could not find a part of the path ...