[Stackoverflow] [Progress OpenEdge ABL] How to rename a file and move to output directory?

Status
Not open for further replies.
T

Thiru

Guest
I am new to progress 4GL and I wrote below codes to move a file from input to output directory. But the concern is that I want to rename the file before/after moving.

Code:
define variable m_inp     as character no-undo initial "C:\Input\Test.csv".
define variable m_outpath as character no-undo initial "C:\Output".

file-info:filename = m_inp.
if file-info:file-size > 0
then
    unix silent value("mv -f " + m_inp + ' ' + m_outpath).
else
    unix silent value("rm -f " + m_inp).

Continue reading...
 
Status
Not open for further replies.
Top