例如匯出指定資料夾中的所有mp4檔案的檔名
1@echo off
2for /r c:\users\administrator\desktop\video %%i in (*.mp4) do (
3echo %%i
4echo %%i>>c:\users\administrator\desktop\video\mp4.txt5)
6 pause
c:\users\administrator\desktop\video 資料夾的路徑*.mp4 為匯出所有mp4格式的檔名稱 可換成其它檔案格式 如:*.jpg、*.png等格式
輸出指定格式的日期。
程式分析 使用 datetime 模組。if name main pass code codec n input input the number n code.scoreofstudent n 輸出今日日期,格式為 dd mm yyyy。更多選項可以檢視 strftime 方法 print dat...
python輸出指定格式的日期
import time print 當前時間戳 time.time 當前時間戳 1529908783.3990765 print 格式化可讀時間模式 time.asctime 格式化可讀時間模式 mon jun 25 14 39 43 2018 print 格式化日期 time.strftime y...
16輸出指定格式的日期
usr bin env python3 輸出指定格式的日期 import time 當前時間戳 print time.time 本地時間 print time.localtime 格式化的時間 print time.asctime time.localtime time.time 格式化日期 pri...