これは日々の作業を通して学んだことや毎日の生活で気づいたことをを記録しておく備忘録である。
HTML ファイル生成日時: 2024/11/21 17:40:55.112 (台灣標準時)
Python の pathlib モジュールを使いファイルの存在を確認するは以下の通り。
実行すると、以下のようになる。#!/usr/pkg/bin/python3.9 # importing pathlib module import pathlib # file name file_kernel = '/netbsd' # constructing pathlib object p_kernel = pathlib.Path (file_kernel) # existence check of the file existence_kernel = p_kernel.exists () # printing result print ("Existence of the file \"%s\": %s" % (file_kernel, existence_kernel) ) # file name file_nonexistence = '/NETBSD' # constructing pathlib object p_kernel2 = pathlib.Path (file_nonexistence) # existence check of the file existence_kernel2 = p_kernel2.exists () # printing result print ("Existence of the file \"%s\": %s" \ % (file_nonexistence, existence_kernel2) )
% ./test_pathlib_5.py Existence of the file "/netbsd": True Existence of the file "/NETBSD": False