computing
  • 1

Batch File Delete File Using Network Path

  • 1

i have a delete one sub file in the network folder. what is command to connect to share folder and can delete the file inside it by using batch file. TQ

Share

1 Answer

  1. @echo off
    net use X: \\servername\foldername
    cd /d X:
    ::Put all your delete stuff here ..

    Subhash Chandra.

    • 0