Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
271 views

SHFileOperation FO_MOVE deletes a file if the destination drive is full

I had a piece of code which uses windows SHFileOperation function with FO_MOVE operation. Additional flags specified were FOF_NOCONFIRMATION | FOF_NOERRORUI | FOF_SILENT. A particular weird behavior ...
1
vote
1answer
290 views

SHFileOperation doesn't move all of a folder's contents

this makes a new folder on the desktop, but it doesn't move the contents of the folder .pfrom to the folder .pTo. int main() { SHFILEOPSTRUCT sf = {0}; TCHAR myt[MAX_PATH]; ...
0
votes
0answers
50 views

Copy files between remote desktop

I am using SHFileOperation to copy file from one location to other. This function works fine if the path is within the local system. But if I give a network path it fails. Can anyone please let me ...
0
votes
1answer
298 views

Performance issue when moving of files on network shares

I'm writing an application which can copy files on a network share. Usually the files are moved on the same physical hard drive. If you test this with Windows Explorer, this operation will be executed ...
0
votes
1answer
208 views

Ability of SHFileOperation

Does SHFileOperation support to move and rename files at the same time? I'v got a set of files : c:\ f1.bmp f2.bmp f3.bmp f4.bmp I want to move each to new folder, and rename them: d:\ b1.bmp ...