“OS.Listdir в Python” Ответ

OS.Listdir в Python

#import libs
import os

#set path of file or website on which listdir is to be applied
path='/users/desktop/dummy'

#Print all data in path

for file in os.listdir(path):
  print(file)
Successful Sloth

Список каталога в Python

from os import listdir

## Prints the current directory as a list (including file types)
print(os.listdir())
Jittery Jackal

Python os.listdir атрибуты

from pathlib import Path

for path in Path('.').iterdir():
    info = path.stat()
    print(info.st_mtime)
DreamCoder

Ответы похожие на “OS.Listdir в Python”

Вопросы похожие на “OS.Listdir в Python”

Больше похожих ответов на “OS.Listdir в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования