1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windowsバッチファイルでインターネットショートカットを作成しファイルをダウンロードする方法

Last updated at Posted at 2022-12-09

1. はじめに

今回は、自分自身への備忘録を兼ねて、Windowsバッチファイルでインターネットショートカットを作成しファイルをダウンロードする方法を、お伝えしたいと思います

2. この記事を読んでできること

  • Windowsバッチファイルでインターネットショートカットを作成しファイルをダウンロードすることができるようになる

3. 注意事項

  • ダウンロードURLに、函館市のオープンデータ CSVファイルを利用させていただいております。(感謝)

4. 必要なもの

  • Windows OS PC(Windows11を想定)
  • テキストエディタ(サクラエディタを利用)

5. インターネットショートカットを作成しファイルをダウンロードするバッチファイル

  • .batファイルを作成し、実行する
InternetDownload.bat
@echo off
cd /d %~dp0
setlocal enabledelayedexpansion
rem DOSバッチでインターネットショートカットを作成し、ファイルをダウンロードする方法

rem URLを設定
set DOWNLOAD-URL="https://www.city.hakodate.hokkaido.jp/docs/2022020900014/files/nennreibetsuR0401.csv"

rem インターネットショートカットファイル名を設定
set FILE-NAME=InternetShortcut.url

rem インターネットショートカットファイルを作成
echo [InternetShortcut]> %FILE-NAME%
echo URL=%DOWNLOAD-URL%>> %FILE-NAME%

rem インターネットショートカットを実行し、ファイルをダウンロードする
call %FILE-NAME%

rem 終了
endlocal
exit /b


6. おわりに

いかがでしたでしょうか?Windowsバッチファイルでインターネットショートカットを作成しファイルをダウンロードすることができたのではないかと思います
今回の記事が、みなさまの学習の参考になれば幸いです

2022/12/09 TAKAHIRO NISHIZONO


1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?