AutoHotkey Community

It is currently May 26th, 2012, 10:30 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: What type of a loop
PostPosted: September 4th, 2009, 6:54 pm 
what type of loop is this?

I have the following csv file with this info:
Frequency,Filename,Destination,Destination Filename

Sample file
------------------------
Daily,File01.txt,G:\Daily\Somewhere,DailyFile_%Date%.txt
Weekly,File02.txt,G:\Weekly\Somewhere,WeeklyFile_%Date%.txt
Monthly,File03.txt,G:\Monthly\Somewhere,MonthlyFile_%Date%.txt
------------------------

What type of loop do i create?

I know it has to read the file first and then copy each file line by line.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2009, 6:56 pm 
Sorry...

I want the script to read each line and copy the corresponding file to the destination using the destination name.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2009, 7:06 pm 
Offline

Joined: April 4th, 2008, 8:15 pm
Posts: 538
Location: Canada
Quote:
know it has to read the file first and then copy each file line by line.


First get the directory alone, then store in variable 'Dir'
Code:
Loop Parse, Dir, `n
 FileRead File_%A_Index%, %A_LoopField% ; File1, File2, etc contain the line with the filename

Then do the same with the other file

Not tested - may need some debugging


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 4th, 2009, 7:12 pm 
thanks for pointing me in the right direction...

will work on it.


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: AndyJenk, Bing [Bot], Google [Bot], JSLover, Leef_me, Miguel, patgenn123, rbrtryn and 66 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group