in reply to Deleting Files Off of a Remote Machine

yes, there is. how are these files accessible? you could mount the files via NFS and manipulate them, you could delete them via ftp (assuming ftp is set up) or you could use a remote shell like ssh. what OS is this thing running and what do you already have set up? a specific question is required to provide a specific answer.

perl -e"\$_=qq/nwdd\x7F^n\x7Flm{{llql0}qs\x14/;s/./chr(ord$&^30)/ge;print"

  • Comment on Re: Deleting Files Off of a Remote Machine

Replies are listed 'Best First'.
Re^2: Deleting Files Off of a Remote Machine
by bkiahg (Pilgrim) on Oct 18, 2004 at 20:05 UTC
    It's a 2000 network. No ftp. Hope this helps.

      UNC paths work with most functions, incl unlink:
      unlink("\\\\server\\share\\dir\\file.txt");
      If there's no share, there's the special C$, D$, etc shares for C:, D:, etc:
      unlink("\\\\server\\C$\\dir\\file.txt");
      Does that help?

        Thats exactly what I was looking for. Thank you.