{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4f9ac7c8", "metadata": {}, "outputs": [], "source": [ "import os, sys\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 24, "id": "b82882c0", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "\"du -h --max-depth=2 '/mnt/f/娱乐/漫画2/' > /home/whistler/get_size.txt\"" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "path = '/mnt/f/娱乐/漫画2/'\n", "cmd1 = \"du -h --max-depth=2 '%s' > /home/whistler/get_size.txt\" % path\n", "cmd1" ] }, { "cell_type": "code", "execution_count": 25, "id": "9aed57c2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "os.system(cmd1)" ] }, { "cell_type": "code", "execution_count": 28, "id": "b56342af", "metadata": {}, "outputs": [], "source": [ "ret = pd.read_csv('/home/whistler/get_size.txt', sep='\\t', header=None)" ] }, { "cell_type": "code", "execution_count": 29, "id": "4a975afa", "metadata": {}, "outputs": [], "source": [ "ret[2] = ret[1].apply(lambda x: len(os.listdir(x)))" ] }, { "cell_type": "code", "execution_count": 30, "id": "9081cb0d", "metadata": {}, "outputs": [], "source": [ "ret[3] = ret[0].apply(lambda x: float(x[:-1]) if x[-1] == 'K' else float(x[:-1]) * 1000 if x[-1] == 'M' else float(x[:-1]) * 1000000 if x[-1] == 'G' else float(x)).astype(int)" ] }, { "cell_type": "code", "execution_count": 32, "id": "e35887f7", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", " | 0 | \n", "1 | \n", "2 | \n", "3 | \n", "
---|---|---|---|---|
0 | \n", "21M | \n", "/mnt/f/娱乐/漫画2/17h/[17H (蜥臀目)] SKIN · ノーマルミッション... | \n", "35 | \n", "21000 | \n", "
1 | \n", "57M | \n", "/mnt/f/娱乐/漫画2/17h/[17H (蜥臀目)] SKIN · ノーマルミッション... | \n", "96 | \n", "57000 | \n", "
2 | \n", "41M | \n", "/mnt/f/娱乐/漫画2/17h/[17H (蜥臀目)] SKIN · ノーマルミッション... | \n", "59 | \n", "41000 | \n", "
3 | \n", "47M | \n", "/mnt/f/娱乐/漫画2/17h/[17H (蜥臀目)] SKIN · ノーマルミッション... | \n", "66 | \n", "47000 | \n", "
4 | \n", "21M | \n", "/mnt/f/娱乐/漫画2/17h/[17H (蜥臀目)] 婦警X脅迫X中出し [中国翻訳] | \n", "21 | \n", "21000 | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
3220 | \n", "103M | \n", "/mnt/f/娱乐/漫画2/zen/[不紳士作戰部 (ZEN、藺Lyin)] 夏日鉄血調教~... | \n", "49 | \n", "103000 | \n", "
3221 | \n", "1.1G | \n", "/mnt/f/娱乐/漫画2/zen | \n", "14 | \n", "1100000 | \n", "
3222 | \n", "2.0G | \n", "/mnt/f/娱乐/漫画2/zerodo/[FANBOX] にどDegree123 [中国翻... | \n", "879 | \n", "2000000 | \n", "
3223 | \n", "2.0G | \n", "/mnt/f/娱乐/漫画2/zerodo | \n", "1 | \n", "2000000 | \n", "
3224 | \n", "194G | \n", "/mnt/f/娱乐/漫画2/ | \n", "203 | \n", "194000000 | \n", "
3225 rows × 4 columns
\n", "