Pertanyaan yang diberi tag scripting

126
Unix - buat jalur folder dan file

Saya tahu Anda dapat melakukannya mkdiruntuk membuat direktori dan touchmembuat file, tetapi apakah tidak ada cara untuk melakukan kedua operasi sekaligus? yaitu jika saya ingin melakukan hal di bawah ini ketika folder othertidak ada: cp /my/long/path/here/thing.txt

115
Uji atau periksa apakah ada sheet

Dim wkbkdestination As Workbook Dim destsheet As Worksheet For Each ThisWorkSheet In wkbkorigin.Worksheets 'this throws subscript out of range if there is not a sheet in the destination 'workbook that has the same name as the current sheet in the origin workbook. Set destsheet =...

113
Download file batch Windows dari URL

Saya mencoba mengunduh file dari situs web (mis. Http://www.example.com/package.zip ) menggunakan file batch Windows. Saya mendapatkan kode kesalahan ketika saya menulis fungsi di bawah ini: xcopy /E /Y "http://www.example.com/package.zip" File batch sepertinya tidak menyukai "/" setelah http....