Vbs Script to check if a folder exist and then run a file

后端 未结 3 1774
北荒
北荒 2020-12-16 03:53

Hello I\'m new here I need a script to check, if a folder exist and then run a file from the folder. If not, it should extract a ZIP file into a specific location. Thanks in

相关标签:
3条回答
  • 2020-12-16 04:16
    Dim FILE, tmpfilepath, uniqueid As String
        uniqueid = Row.uniqueid
        tmpfilepath = "G:\Files\" + uniqueid
        If System.IO.Directory.Exists(tmpfilepath) Then
              do something
                  Else
            System.IO.Directory.CreateDirectory(tmpfilepath)
    
    
        End If
    
    0 讨论(0)
  • 2020-12-16 04:16

    If I understand correctly : create a script: sudo vim script.sh

    #!/bin/bash
        echo "enter your path"
        read path
    
        if [[ -d "$path"  ]]
                then
                echo $(sudo $path/yourprograme)
                else
                echo "enter your specific location"
                read spec
                $ mkdir -p $spec
                $ unzip yourfiles.zip -d $spec
    
                fi
    

    run the scrip.sh : sudo ./script.sh

    0 讨论(0)
  • 2020-12-16 04:31
    'Objects
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set shl = CreateObject("WScript.Shell")
    
    path="C:\SomeFolderToExist\" 'path to folder    
    exists = fso.FolderExists(path)
    
    if (exists) then 
        program="myprog.exe" 'Program name to run
        shl.Run(path & program) 'Run a program
    end if
    

    For unzipping, I can only tell you to see this: Extract files from ZIP file with VBScript

    0 讨论(0)
提交回复
热议问题