Copy Folder to Folder
-
Hi All How can i copy Folder complete data to Folder?I have a source folder A which have 10 files and 2 folder.My destination folder B.I want to copy folder A to B.Plz help me
Hi, Try using
FindFirstFile
andFindNextFile
to enumerate all files in Folder A, then useCopyFile
to copy each found file to Folder B. (You can useCreateDirectory
to create Folder B if it doesn't exist). -
Hi, Try using
FindFirstFile
andFindNextFile
to enumerate all files in Folder A, then useCopyFile
to copy each found file to Folder B. (You can useCreateDirectory
to create Folder B if it doesn't exist). -
Try "Search Messages" for
FindFirstFile
in this site. There were quite a few examples. -
Hi All How can i copy Folder complete data to Folder?I have a source folder A which have 10 files and 2 folder.My destination folder B.I want to copy folder A to B.Plz help me
There is an API called
SHFileOperation
using which this is possible.«_Superman_»
-
Hi All How can i copy Folder complete data to Folder?I have a source folder A which have 10 files and 2 folder.My destination folder B.I want to copy folder A to B.Plz help me