Language: ChineseGermanSpanishFrenchDutchItalianRussian
123 Flash Chat Forums

Go Back   TOPCMM Community > SWFKit > SWFKit Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-20-2005, 02:03 PM
Junior Member
 
Join Date: Dec 2004
Posts: 7
Default folder.copy(dest)

Hallo! can anybody help me?

I want to copy the folder c:\01 into the folder C:\TEMP

why this doesnt work?

Code:
folder.copy("C://01","C://TEMP");
and how can i make new folders?


and is any document for ffish script in germany variable ?
thanks!
Reply With Quote
  #2 (permalink)  
Old 02-20-2005, 02:55 PM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:folder.copy(dest)

Do you want to copy all files in c:\01?
Reply With Quote
  #3 (permalink)  
Old 02-20-2005, 05:00 PM
Junior Member
 
Join Date: Dec 2004
Posts: 7
Default Re:folder.copy(dest)

With this script i copy all SubFolders from the Folder c:/TEMP to c:\\01 with all files of c: TEMP.
But how can i copy hardly one Folder because ther are many folders in c:\\TEMP

Code:
f = new Folder("c:\\TEMP");
f.copy("c:\\01")
Reply With Quote
  #4 (permalink)  
Old 02-21-2005, 11:35 AM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:folder.copy(dest)


Code:
function CopyFiles(src, dest)
{
var srcFolder = new Folder(src);
var files = srcFolder.files;

var i;

for (i = 0; i < files.length; i++)
{
var file = new File(files[i]);
file.copy(dest + "\\" + file.name);
}
}

CopyFiles("C:\\temp", "c:\\01");
Reply With Quote
  #5 (permalink)  
Old 01-14-2007, 04:57 AM
Junior Member
 
Join Date: Jan 2007
Posts: 2
Default Re:folder.copy(dest)

Thanks a ton for solving my problem....
Reply With Quote
Reply

Was this information helpful?    Yes No



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 07:43 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.