“Как увидеть каталог из модуля ОС” Ответ

Как увидеть каталог из модуля ОС

import os

# detect the current working directory
path = os.getcwd()

# read the entries
with os.scandir(path) as listOfEntries:
    for entry in listOfEntries:
        # print all entries that are files
        if entry.is_file():
            print(entry.name)
QuantumCoder

Как увидеть каталог из модуля ОС

#! /bin/bash

for filename in *.py; do
    echo "$filename:"
    cat $filename | python3 -m timeit
    echo " "
done
QuantumCoder

Как увидеть каталог из модуля ОС

import pathlib

# define the path
currentDirectory = pathlib.Path('.')

# define the pattern
currentPattern = "*.py"

for currentFile in currentDirectory.glob(currentPattern):
    print(currentFile)
QuantumCoder

Как увидеть каталог из модуля ОС


import pathlib

# define the path
currentDirectory = pathlib.Path('.')

for currentFile in currentDirectory.iterdir():
    print(currentFile)
QuantumCoder

Ответы похожие на “Как увидеть каталог из модуля ОС”

Вопросы похожие на “Как увидеть каталог из модуля ОС”

Больше похожих ответов на “Как увидеть каталог из модуля ОС” по Python

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

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