Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
109 views

What are some good approaches to predicting the completion time of a long process?

tl;dr: I want to predict file copy completion. What are good methods given the start time and the current progress? Firstly, I am aware that this is not at all a simple problem, and that predicting ...
7
votes
3answers
503 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
100 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
1answer
230 views

Can CopyFileEx be called from a secondary thread?

Is it possible and right to call CopyFileEx and CopyCallback/ProgressRoutine function (ProgressBar.Position will be synchronized) from a thread? Can I declare CopyCallback/ProgressRoutine function ...
6
votes
8answers
864 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
3answers
1k 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?
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
3answers
117 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 ...
3
votes
2answers
293 views

FileChannel.transferTo for large file in windows

Using Java NIO use can copy file faster. I found two kind of method mainly over internet to do this job. public static void copyFile(File sourceFile, File destinationFile) throws IOException { ...
3
votes
4answers
364 views

Delphi - Folder Synchronization over network

I have an application that connects to a database and can be used in multi-user mode, whereby multiple computers can connect the the same database server to view and modify data. One of the clients ...
3
votes
3answers
103 views

Java copy files distorting file

So I am trying to copy a file to a new location this way: FileReader in = new FileReader(strTempPath); FileWriter out = new FileWriter(destTempPath); int c; while ((c = in.read()) != -1){ ...
2
votes
6answers
65 views

Different output content file copy in C

Hello i had a simple copy file program in C but i cant explain why i get different output in the destination file when i use the 2nd method. The correct output with for loop: I am the worst ...
2
votes
0answers
91 views

How pause/resume FSCopyObjectAsync

There is a way to cancel FSCopyObjectAsync with calling FSFileOperationCancel(fileOp) by checking BOOL cancelClicked in statusCallback, but is there a way to pause/resume it by another flag? main{ ...
2
votes
4answers
117 views

How to write a call back function for ignore in shutil.copytree

I am relatively new to python. I am trying to copy a directory to another directory maintaining the structure. I am using shutil.copytree(src, dst, symlinks=False, ignore=None, ...
2
votes
1answer
156 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
2k 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
1answer
311 views

From an application running in remote desktop, how to programmatically get a file that has been copied to the client clipboard and save it to disk

This is the scenario: User opens a remote desktop session on a server running Windows 2008 Server R2. The remote desktop session does not use mapped drives but clipboard sharing is enabled. User ...
2
votes
2answers
410 views

Python: Checking when shutil.copyfile is done

I have a such code: for file in file_list: shutil.copyfile(file,newpath) #do further actions And here is the question, at #do further actions I use the copied f iles thus I need to make sure ...
2
votes
3answers
787 views

Copying files which the main thread adds to a stringlist using a thread

I have a web creation program which, when building a site, creates hundreds of files. When the internet root folder is situated on the local pc, the program runs fine. If the internet root folder is ...
1
vote
1answer
50 views

segmentation fault while copying file

I'm a beginner and I'm trying to copy the content of a very large text file of size around 33MB ( 33136KB precisely ) to a new file. I'm getting segmentation fault while running the program. Only 16KB ...
1
vote
0answers
18 views

Windows. When copy a file. Change the default 'naming scheme'. [migrated]

When I copy file "some.txt" in windows explorer and paste in the same directory - a new file appears. It's default name is "some - Copy.txt" Is there a way to customize the default name for a new ...
1
vote
2answers
83 views

Block per block file copying

Is there a good way to copy some file or directory(with files and subdirectories) block per block in Mac OS with objective c?
1
vote
2answers
78 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 ...
1
vote
2answers
73 views

File copies itself in Java

can anyone suggest me a way to have a running JAR file copy itself to a specific directory? Thank you Here's what I am trying: import java.io.File; import java.io.FileReader; import ...
1
vote
0answers
60 views

Catching events after calling the FileSystem.FileCopy UI dialog

I copy some files to some destination and in the meantime I want to log the file names in a text file. I'd like to use the Windows 7 Copy/Replace dialog in the case the files are already present in ...
1
vote
3answers
107 views

Path to network file

My web server is running on one server, and the data fetching is running on another server. My code will try copy a remote file and store it in my local path. The remote location is, for example, ...
1
vote
1answer
163 views

Using vb.net to copy a file from Windows XP to Linux

I have some simple vb.net code that I use to copy a file between 2 servers. IO.File.Copy(fromFileName, toFileName, True) ' Overwrites existing files That works fine when both machines are ...
1
vote
1answer
381 views

NSFileManager contentsEqualAtPath:andPath: compare checksum data

Does the NSFileManager method contentsEqualAtPath:andPath: create a dynamic checksum to compare two files, does it open the file header and compare file header details or does it use some other method ...
1
vote
2answers
391 views

How to copy a file to portable drive root with cocoa?

I've tried the following [[NSFileManager defaultManager] copyItemAtPath:@"whatever.txt" toPath:@"/Volumes/MyDrive" error:&copyError]; This gives me the error "The operation couldn’t be ...
1
vote
1answer
884 views

What does “Insufficient system resources…” error mean?

This question spans both serverfault and stackoverflow so I just picked this one. I get the following exception with some simple file copy code. Its running on Windows Server 2003 x64 Caused by: ...
1
vote
3answers
3k views

Can't copy big DB files using “copy”, “robocopy” or even “eseutil”

I am having a problem copying large DB files (~100GB) in an automated script I am trying to write for a Windows Server. I have tried using "copy", "robocopy", and even "eseutil". My script is ...
1
vote
4answers
346 views

java - effective files copying

i would like to know which is the best way to copy large number of files.
1
vote
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
1answer
281 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 ...
0
votes
1answer
70 views

Copying raw file into SDCard?

I've some audio files in my res/raw folder. For some reasons, i want to copy this files to my SDCard When, my application starts. How can i done this? Anyone guide me?
0
votes
1answer
48 views

copying file with shutil.copy2 in python creates file of zero Kbs

hi i am trying to copy a file using shutil.copy2 but it creates a file of zero Kb at the destination..i am using mac os 10.6.7 .The problem is not with all files but some specific files only .The ...
0
votes
0answers
3 views

Entering code from a textbox/label to a new sub during runtime

I am trying to copy text in to one of my modules whilst running the programme to change upcoming apects of it, so far I have had no luck. I have tried various methods and the most promising seems to ...
0
votes
1answer
29 views

Copy all files on cron run - regular task

I've got a virtual dedicated server (running FreeBSD 6.x) and I need to regulary backup files from one folder to another, say from /home/LOGIN/data/www/mydomain.com/test1 to ...
0
votes
2answers
95 views

Securely copy files to a UNC path using .NET

I need to copy files from one server to a UNC path on the same network. The ASP.NET app uses .NET 2.0 Currently we're just using a simple System.IO.File.Copy method, and works just fine, but we were ...
0
votes
2answers
134 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
155 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
1answer
86 views

HTTPS & FSO.copyfile

I have a legacy ASP application that uses FSO (Scripting.FileSystemObjec) to copy a file from the web box to a network share. Since we have upgraded the server to HTTPS, the file copy is slower. Can ...
0
votes
3answers
36 views

Is it better to execute a file over the network or copy it locally first?

My winforms app needs to run an executable that's sitting on a share. The exe is about 50MB (it's a setup.exe type of file). My app will run on many different machines/networks with varying speeds ...
0
votes
0answers
134 views

Dealing with “File being used issue” during robocopy file copy

I would like to hear if someone has won the "file being used" problem during a file copy operation. 1) I'm using Robocopy to copy files from one place to another. 2) Robocopy tries couple times in ...
0
votes
1answer
511 views

FileCopy of NSIS installer not working in Windows 7 but working in Windows XP

I am using FileCopy of NSIS installer to copy a folder along with its all subfiles from a source to destination. This works on XP but not on Windows 7. When i run the installer on Windows 7 , then the ...
0
votes
1answer
148 views

NSIS installer file copy operation not working

!include nsDialogs.nsh !include LogicLib.nsh Section !define FileCopy `!insertmacro FileCopy` !macro FileCopy FilePath TargetDir CreateDirectory `${TargetDir}` CopyFiles `${FilePath}` ...
0
votes
1answer
291 views

How do I copy files?

I need to copy a file from one folder to another folder. How can I implement this in Drupal. Give me some ideas with working examples.
0
votes
1answer
105 views

Prevent Emacs from locking up on large file transfer with dired

I find that when I copy or delete large files with Emacs from dired, (i.e. S-c), Emacs will lock up until the operation is complete. To work-around this I fire an asynchronous shell command 'cp/mv/rm ...
0
votes
1answer
161 views

determing file object size before using file object

I am attempting to determine the size of a downloaded file in python before parsing and manipulating it with BeautifulSoup. (I intend to update to ElementTree soon, but having briefly played with it, ...
0
votes
4answers
84 views

how can i write a script to find the latest updated file and copy to certain directory

i have a process that downloads a file from a webbrower. it has the same name always (can't change that) so each file gets downloaded as file([latestnumber]) so in this directory i have: joe.pdf ...

1 2