adecomm/_oscpath.p

KrisM

Member
Hi,

Where can i find source code for adecomm/_oscpath.p (OpenEdge 11.7) ?
I need to find out if this program is different from using os-create-dir().
 

Cecil

19+ years progress programming and still learning.
This may (or may not) help. If you are using OpenEge on Windows and you need to create a directory tree structure, you can use .NET CreateDirectory Method to do this.
System.IO.Directory is a static class object, so there is no need to define class objects.

Very easy to implement.
Code:
System.IO.Directory:CreateDirectory("dir1\subdir1\subsubdir1").
System.IO.Directory:CreateDirectory("dir2\subdir2\subsubdir2").
System.IO.Directory:CreateDirectory("dir3\subdir3\subsubdir3").

1693519481808.png
 
Top