home *** CD-ROM | disk | FTP | other *** search
- /* makedir.txed */
- arg duwindow
-
- frompath = getenv("dufromdir")
- frompath = 'filelist/stripstar'(frompath)
-
- topath = getenv("dutodir")
- topath = 'filelist/stripstar'(topath)
-
- if duwindow = "FROM" then do
- hailstring = "Make Sub-Directory in "||frompath||"\ Type name below"
- namepath = frompath
- MSG frompath
- end
- else do
- hailstring = "Make Directory in "||topath"\ Type name below"
- namepath = topath
- MSG topath
- end
-
-
-
- x=request(200,200,hailstring," ",,,)
-
- if x = "" then exit
-
- namepath = namepath||x
-
- address command makedir namepath
-
- "filelist/refresh "duwindow
-
-
-
-
- exit
-