Hi,
How do I Move Folder into another Folder, since there is no Folder.Move action?
Is there a way to copy a whole Folder and it's content to another Folder using AMS actions?
Professional Software Development Tools
Hi,
How do I Move Folder into another Folder, since there is no Folder.Move action?
Is there a way to copy a whole Folder and it's content to another Folder using AMS actions?
Last edited by azmanar; 02-04-2006 at 08:55 AM.
Newbie Examples
------> AMS 7.5 : amstudio.azman.info
----> AMS 6 & 5: www.azman.info/ams/
----> FB: facebook.com/GuideToWealth
----> Content Development Blog: www.AZMAN.asia
you would have to useto make the folder you want and useCode:Folder.Create()to copy the files you want into the new folder. if you need to delete the old info use theCode:File.Move("C:\\MyDir\\*.*", "C:\\DestDir\\", true, true, false, false, nil);hope that helpsCode:File.Delete("C:\\MyDir\\MyFile.ext", false, false, false, nil);
chris
Well, you could do a File.Copy action for every file in the folder, but if the folder has a lot of files it will be a lot of work.
Chris and Daniel,
THANKS !!!!!!.........Great guys
Newbie Examples
------> AMS 7.5 : amstudio.azman.info
----> AMS 6 & 5: www.azman.info/ams/
----> FB: facebook.com/GuideToWealth
----> Content Development Blog: www.AZMAN.asia
the File.Move() can move all the files in a certain folder at one time. much cleaner than the File.Copy().
Chris
Thanks, Chris! I did not know about that.Originally Posted by stickck
hmmm...
Moving subfolder and sub-subfolders of a folder would be nasty.
Newbie Examples
------> AMS 7.5 : amstudio.azman.info
----> AMS 6 & 5: www.azman.info/ams/
----> FB: facebook.com/GuideToWealth
----> Content Development Blog: www.AZMAN.asia
http://indigorose.com/forums/showthr...rm+copy+folderOriginally Posted by azmanar
![]()
Intrigued
Intrigue,Originally Posted by Intrigued
Thanks for the link .....! Truly helpful pointers by Worm and yourself in there.
It would be neat if AMS have Folder.Move & Folder.Copy actions.
Newbie Examples
------> AMS 7.5 : amstudio.azman.info
----> AMS 6 & 5: www.azman.info/ams/
----> FB: facebook.com/GuideToWealth
----> Content Development Blog: www.AZMAN.asia
I hear you, agreed.
Intrigued