[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
using SPAWN to work with Windows NT network directories
- Subject: using SPAWN to work with Windows NT network directories
- From: differentiable(at)hotmail.com (Lucas Miller)
- Date: 1 Jun 2001 12:28:11 -0700
- Newsgroups: comp.lang.idl-pvwave
- Organization: http://groups.google.com/
- Xref: news.doit.wisc.edu comp.lang.idl-pvwave:25186
i'm trying to use spawn to create a directory on our Windows network
server.
i can do this locally with the following commands:
IDL> cd, 'c:\temp'
IDL> spawn, 'md mydirname'
will make a directory 'c:\temp\mydirname'. When I try this across the
network
however, eg.,
IDL> cd, '\\Devsrvr\Users\me\'
IDL> spawn, 'md mydirname'
i don't get anything. I can use cd in combination with findfile()
across the network, but i can't get spawn to do anything for me on
devsrvr. Any ideas?
Thanks! Lucas