批處理 將所需檔案儲存到列表,然後根據列表操作檔案

2021-06-03 02:50:52 字數 542 閱讀 4223

set listfile=f:\其他資料\編譯發布工具\listfile.txt

if exist %listfile% del %listfile%

echo make copy files list(%listfile%)……

pause

cd %sourcedir%

dir /b/s *.pbd >> %listfile%

dir /b/s *.exe >> %listfile%

dir /b/s *.dll >> %listfile%

dir /b/s *.pbx >> %listfile%

echo make copy file list complete!

echo start copy files……

pause

del %completedir%\. /s

pause

for /f %%a in (%listfile%) do (

echo %%a 

copy %%a %completedir% /y

)

讀出mysql資料儲存到列表,然後完成視覺化

因為pyecharts的bmap模組視覺化的資料型別為列表型別,所以我們要先將資料庫中的資料讀出作為列表,這樣才能方便呼叫。這是我們在資料庫中建立的表,內容如下 具體匯出過程如下 import pymysql def cities con pymysql.connect host localhost...

C 將所需內容儲存到txt文字中

前言 題外話 今天911,首先想到了 911事件 轉眼間11年過去了,感嘆時間之快!話說,在cv領域,特別是目標檢測任務中,計算演算法的ap值是一件基本任務。特別地,在使用c 做前向推理的時候,對其 結果做ap計算的時候,往往可以將其 結果先儲存到txt文字中,然後將其結果轉為計算ap所需要的資料格...

mysql將查詢結果儲存到檔案

1.新建查詢語句檔案query.sql,內容如下 set names utf8 select feedid,city message from feed limit 1000 上面的set names utf8語句是設施當前使用的編碼,如果編碼和資料庫的編碼不一致,會出現亂碼 2.執行如下 root...