Tagged Questions
The copyfile tag has no wiki summary.
7
votes
1answer
195 views
Delphi: CopyFileEx and Thread
I have a thread and a Progress Routine (a function) inside it (in my thread class).
I try to do this inside the thread:
...
3
votes
2answers
104 views
How do I get CopyFileEx to report back so I can cancel a file copy operation?
I’m trying to use the FileUtilities.CopyFile wrapper for CopyFileEx from here . But the CopyFileCallbackAction doesn’t get called until after the file is copied (I’ve tried copying a large file). How ...
3
votes
2answers
192 views
Hook into the Windows File Copy API from C++
I need to hook copyfile in order to stop the process whenever a malicious file is being copied. I saw a question asked by Cat Man Do
Hook into the Windows File Copy API from C#
and he mentioned that ...
3
votes
3answers
236 views
How files are copying at the low level?
I have a small question:
For example I'm using System.IO.File.Copy() method from .NET Framework. This method is a managed wrapper for CopyFile() function from WinAPI. But how CopyFile function works? ...
2
votes
1answer
33 views
How to catch errors when copying files in Ruby?
I copy a file like this:
require 'fileutils'
FileUtils.copy(source_file, dest_file)
I would like to know if this operation succeeded, and if not, what was the error.
Where could I find the ...
2
votes
6answers
64 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
1answer
85 views
Using Win32's ::CopyFile to retrieve file from Symantec Enterprise Vault
I'm having a problem copying a file from a Symantec Enterprise Vault. Usually, I use the Win32 ::CopyFile function to copy from one NTFS to another. Now, the NTFS has a special symbolic link or ...
2
votes
4answers
664 views
Error:the filename directory name or volume label syntax is incorrect, in Delphi 7 CopyFile Function
I want to copy files from one folder to another using CopyFile function. The source files paths are stored in a ClientDataSet called "itemsDB". The code is :
Var Source, Dest : String;
Begin
...
2
votes
2answers
470 views
CopyFileEx with multiple files, but only one copy dialog
I've searched the web and stackoverflow for this.
I want to copy multiple files from multiple sources to multiple destinations. I don't bother with UnauthorizedAccessExceptions yet - the files are ...
1
vote
1answer
80 views
Why is FileUtilities.CopyFile wrapper for CopyFileEx interfering with winforms?
I’m using the FileUtilities.CopyFile wrapper for CopyFileEx from here http://msdn.microsoft.com/en-us/magazine/cc163851.aspx . I thought the CopyFileCallbackAction doesn’t get called until after the ...
1
vote
1answer
90 views
Microsoft's CopyFileEx error
I am using Microsoft's CopyFileEx method to copy files.
I am coping from one server to another and the file located in share folder and i am using UNC.
i get an error 999. I was able to find the ...
1
vote
3answers
151 views
.net: Is this file in use?
I've seen multiple version of this question on this site, but none seems to address my precie problem, so here it is:
I'm trying to copy a file, using System.Copy. The destination, if it exists, ...
1
vote
1answer
327 views
by using copyfile element files cant not bind into msi package
i am using wix 3.0.i have a folder name "images".so i want to copy all the files from images into msi package.when i copy all the file and install msi to another PC then it did not bind the images. ...
1
vote
2answers
801 views
Performance issues using Copyfile() to copy files from different computers
Useing VC++ VisualStudio 2003.
I'm trying to copy several image files (30kb or so per file) from another computer`s shared folder to a local file.
The problem is that there can be more than 2000 or ...
1
vote
2answers
428 views
What is wrong with my WINAPI call to handle long file paths?
I've been trying to figure out the best way to copy files in Windows with deep paths (files, not folders so robocopy is out of the question). The best solution I've been able to come up with is ...
0
votes
1answer
15 views
FileSystem.CopyFile user actions
I have an MVC3 C#.Net web app. In my HTML View, I am using the standard Windows file input
<input style="border:thin solid #ccc;width:270px; background-color: #FFFFFF;" type="file" name="Name" ...
0
votes
2answers
60 views
how to use copyto api in phonegap
i want to copy a sqlite db to the database folder but dont know how to use copyto api:
function win(entry) {
console.log("New Path: " + entry.fullPath);
}
function fail(error) {
alert(error.code);
...
0
votes
0answers
37 views
Recording bytes copied in CopyFileEx
I am trying to create a test harness, which tests CopyFileEx from kernel32.dll for copying files across the WAN.
My code is based upon on a link found on here
What I have done is create a shared ...
0
votes
2answers
71 views
Copying a file to/from external storage
I'm fairly new to Android and am having an writing to a certain file.
What I'm trying to do is use the TextToSpeech.synthesizeToFile() method to write an audio file. This is working except for the ...
0
votes
1answer
289 views
Why copying to system32 automatically copies to sysWOW64 instead?
I'm trying to copy a file to C:\windows\system32 by calling CopyFileA - debugging shows that indeed the string "C:\windows\system32\filename" is sent to CopyFileA, but my file is copied to ...
0
votes
1answer
60 views
VSS in C# NET DirectoryCopy Function
I am writing a class (based on a class library) that creates a RAMDisk, and every X minutes I need to backup the contents of the RAMDisk to a physical location due to volatility. It was suggested to ...
0
votes
1answer
44 views
Copying a CFileDialog file
I'm using a CFileDialog dialog box to open a file in my program. When this file gets opened, I'd also like to save a copy of that file into the directory of my program. How can I do this?
This is how ...
0
votes
2answers
201 views
How do I invoke the shell “file copy dialog” to report the progress of a copy in Win32?
How can I copy files by invoking windows "copy files" dialog to do it?
SHFileOperation seems like a option, but it is inside our process.
By the way, does SHFileOperation have GUI interface? Is it ...
0
votes
1answer
62 views
wix - reserving the file in the TEMP IN ROLLBACK CASE
I need to delete a file from the target machine before an execution of my custom action. In case unsuccessful result of action I should rollback all the changes. So I should replace file to the temp ...
0
votes
2answers
300 views
How to Copy HTML file along with all the associated images and scripts folder?
I want to copy an HTML file from one location to another using VB.net.
When i use any of the three FileCopy, System.IO.File.Copy, My.Computer.FileSystem.CopyFile
it copies only the file and not the ...
0
votes
1answer
667 views
can't get copyfile to work
i am just trying to use copyfile to copy a file, it is as simple as that but it wont work. i have googled it and looked at 20 links and they all say "object.CopyFile ( source, destination[, overwrite] ...
0
votes
2answers
1k views
Copy file from setup location to another location in wix on install
I have created A.msi setup file which include some files in "Sample" folder.
I have to copy files from Sample folder to temp folder.
Anybody suggest me how can i do it.
0
votes
2answers
366 views
copy a file using UNC and impersonation
I want to use FileInfo and CopyTo to move some files across a network. I have to move the files to a share on a server that has to be accessed using a particular user account. How do I do this - do ...
0
votes
4answers
401 views
Using windows CopyFile function to copy all files with certain name format
I am updating some C code that copys files with a certain name. basically, I have a directory with a bunch of files named like so:
AAAAA.1.XYZ
AAAAA.2.ZYX
AAAAA.3.YZX
BBBBB.1.XYZ
BBBBB.2.ZYX
Now, In ...
0
votes
1answer
162 views
Vista copyfile is copying into VirtualStore folder
I have created one application on Vista, that is running with admin privileges.
I am trying to copy one file to ProgramData\Application\ folder.
But instead to copying there its copying at location ...