Jump to content

FileExists over a share?


Recommended Posts

Is there a way to get (accurately) the status of a file over a network drive WITHOUT MAPPING?

I have a script that deploys files to a network share on the remote C drive... i.e.

Run('cmd /c NET USE \\' & $ip & '\C$ "' & $pass & '" /USER:"' & $user & '", '', @SW_HIDE)

then i copy it over:

Run('cmd /c COPY /Y "' & $filepath & '" "\\' & $ip & '\C$\' & $filename & '", '', @SW_HIDE)

Now i want to be able to (reliably) know if the file exists WITHOUT mapping the drive i.e.

NET USE z: \\10.1.6.75\C$ "admin" /USER:"Administrator"

the reason being that disconnecting the drive seems to lag on this machine sometimes, and that slows to deployment down a great deal....

Any other remote deployment guys out there that have tackled this one?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...