On 06/10/2010 05:55 AM, prakash babu wrote:
> I have a web application which runs as SYSTEM user in windows.
> It executes the following command using Java Runtime.exec api's
> C:/cygwin/bin/sh.exe -c C:/cygwin/bin/mkdir.exe -p 'C:/cygwin/tmpdir'
> 
> The command executes fine but I get the following warning.

Better yet, don't trigger the warning in the first place, by using POSIX
paths from the get-go:

c:/cygwin/bin/sh.exe -c /cygdrive/c/cygwin/bin/mkdir.exe -p
'/cygdrive/c/cygwin/tmpdir'

-- 
Eric Blake   ebl...@redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to