I write two thread in one project.
Thread1 is used in coping all files and child folders in folder1 to folder2.
Both of folder1 and folder2, folder3 are from input.
Thread2 is used in checking whether folder2 has any file or child folder, if true ,Move them to folder3(Copy them to folder3, then remove them from folder2).
There has a problem.
Example1
folder1 'C:\Test\1'
folder1's children
C:\Test\1
C:\Test\1\L.tex
C:\Test\1\sdf.txt
C:\Test\1\2031 <--- it's folder
folder2 'D:\Sdf\555'
folder3 'D:\Sdf\492pS1'
project running...
Thread1 create D:\Sdf\555\1
Thread2 move D:\Sdf\555\1 to D:\Sdf\492pS1\1
Thread1 create D:\Sdf\555\1\2031(D:\Sdf\555\1 is removed)
error...
How can I detect whether a folder is in use or not?
move. I'd useSHFileOperationto move a folder. If it fails, wait for a short time and try again. – David Heffernan Oct 11 '12 at 8:52