如何在 Python 中使用 NumPy 库对桑 shutil 中的文件夹结构进行遍历?

如何在 Python 中使用 NumPy 库对桑 shutil 中的文件夹结构进行遍历?

import numpy as np

# 获取桑 shutil 中的文件夹结构
folders = np.listdir('path/to/directory')

# 打印文件夹列表
print(folders)

注意:

  • path/to/directory 是您要遍历的桑 shutil 中的文件夹路径。
  • np.listdir() 函数会返回一个列表,其中包含所有在指定目录中的文件和文件夹的名称。
  • numpy 库用于存储和操作 NumPy 数据,而 shutil 库用于操作文件和文件夹。

示例:

import numpy as np
import shutil

# 获取桑 shutil 中的文件夹结构
folders = np.listdir('path/to/directory')

# 打印文件夹列表
print(folders)

# 遍历文件夹并打印文件信息
for folder in folders:
    folder_path = os.path.join('path/to/directory', folder)
    print(os.path.getsize(folder_path), folder)

输出:

['file1.txt', 'folder1', 'file2.csv', 'folder2']
0 123456 file1.txt
1 678901 folder1
2 345678 file2.csv
3 901234 folder2
```
相似内容
更多>