views:

34

answers:

1

Hi there I wanna know how I can create a folder via Oracle form Builder? is it possible?

I mean I wanna create a folder dynamically and after that open it by Internet explorer to customer that customer easily copy his files.

I use oracle 6i.

+2  A: 

In Forms 6i running in client/server you could use the HOST command like this:

HOST('md c:\somefolder\newfolder');

In later web-based versions of Forms you would use CLIENT_HOST instead of HOST.

Tony Andrews
Thanks for yr answer,How about in 10g version?this work don't work :(
rima
In 10G you would use CLIENT_HOST, which requires you to install the Webutil components. I thought you said you were using 6i though?
Tony Andrews