[Stackoverflow] [Progress OpenEdge ABL] My file is not being created in the mapped drive when I try to create it using progress 4gl

Status
Not open for further replies.
A

Abhinit Kumar Das

Guest
I mapped a drive and tried to generate a text file through progress 4gl in that mapped drive. But file was not generated in that mapped drive. When I tried to generate the same file in a local drive then it was generated successfully. Can someone help me with this problem?

I have attached the Progress 4gl code to generate text file

this code has the loction of local drive '''procedure p-text-generation:

output to value ("//10.0.0.29/myfolder/abhinit.txt"). put unformatted space(1) "hello from p-text-generation" skip. output close.

END PROCEDURE. /* p-text-generation */'''

this code has the loction of mapped drive '''procedure p-text-generation:

output to value ("T:/abhinit.txt"). put unformatted space(1) "hello from p-text-generation" skip. output close.

END PROCEDURE. /* p-text-generation */'''

The folder myfolder is mapped as T drive in my system

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