如何將某個資料夾下的檔案根據標籤分到指定的資料夾下

2021-08-15 03:44:28 字數 1048 閱讀 2079

在平時的工作中,有時候資料夾下面有很多的檔案,但是只有部分是我們需要的,如何將這部分檔案提取出來並根據我們所擁有的標籤分好類,是做分類中乙個很重要的環節。

比如上面一共有53576個檔案,但是我們只要其中10000多個檔案,且這10000多個檔案有標籤,如何根據標籤分好類並放入資料夾呢?下面直接上**

#include#include#include#include#include#include"stdio.h"

using namespace std;

using namespace cv;

int main()

{ ifstream fin("c:/users/hxd/desktop/train_chuli.txt");

string line;

string pngpath;

int label;

while(getline(fin,line))

{ fin >>pngpath; //檔案路徑

fin >>label; //檔案label

// if(label!=0)

string s1="e:/hxd_important_file/kaggle_data_zip/train_zip/train.zip/train/"; //資料夾的路徑

int length=strlen(pngpath.c_str())-strlen(s1.c_str());

string name=pngpath.substr(64,length); //得到檔名,資料根據你的路徑長短修改

mat img=imread(pngpath); //載入影象

stringstream ss;

ss其中txt文件,應該新增屬於自己的標籤和路徑。

執行某個資料夾下的全部py檔案

import os 執行乙個檔案裡所有的檔案,比如 def func path 先判斷這個path是檔案還是資料夾 isdir,isfile 如果是檔案 py結尾 if os.path.isfile path and path.endswith py 執行這個檔案 需要記怎麼執行檔案 os.syst...

Ubuntu刪除資料夾下某個檔案之外的其他所有檔案

假設當前目錄下有以下檔案 想要刪除1.txt以外的檔案和目錄,第一種可行的方法如下 先把1.txt以外的檔案找出來,然後刪除。cxdn1013 cxdn1013 inspiron 5439 0202 ls grep v 1.txt 2.txt delete.sh downloads cxdn1013...

如何訪問WEB INF資料夾下的jsp檔案

在web專案中,為了安全,可能需要把jsp檔案放在web inf目錄下,這樣如果我們的頁面中出現超連結a標籤或者js的location.href去直接轉向到web inf下的某乙個jsp頁面,那麼就會引用不到,因為這樣的請求方式是客戶端的請求,而web inf頁面只對服務端開放,對客戶端是不可見的,...