User Tools

Site Tools


iterations

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
iterations [2015/05/01 09:06] – created dmitryiterations [2019/10/30 18:11] (current) – removed dmitry
Line 1: Line 1:
-===== Iterations ===== 
  
-Currently iterations are not natively supported in EasyMorph, although they are possible with a simple workaround. 
- 
-  * Setup EasyMorph project so that it takes, say, input.csv and produces output.csv 
-  * Generate a list of files to process in EasyMorph 
-  * Iterate through this list: 
-    * Take one file from the list and copy it as input.csv 
-    * Run the EasyMorph project 
-    * Rename output.csv and copy it to a designated output directory 
- 
-Below is an example of a batch file that does exactly this: 
- 
-  @echo off 
-  setlocal EnableDelayedExpansion 
-  SET pathEasyMorph=C:\Users\Dmitry\AppData\Local\EasyMorph\Morph.exe 
-  SET pathInputFolder=.\ 
-  SET pathOutputFolder=.\ 
-   
-  for /f "tokens=*" %%a in ('dir /b "%pathInputFolder%*.csv" ') do ( 
-    copy /Y "%%a" input.csv 
-    %pathEasyMorph% /c /run "my project.morph" 
-    copy /Y output.csv "%pathOutputFolder%Processed - %%~na.csv" 
-    echo Processed: %%a 
-  ) 
- 
-=== See also === 
- 
-  * [[http://easymorph.com/examples.html#qlikview|Example of iterations in EasyMorph using QlikView loading script]].  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki