“Python LS Directory” Ответ

Файлы списка Python в текущем каталоге

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
  
Soggy Boi

Python получить все имена файлов в режиме

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
Troubled Teira

Хранить все имя файла в папке Python

import os
#this command will store all .txt files in same directories
ALL_FILES_IN_DIR = [ELEM for ELEM in os.listdir() if "txt" in ELEM]

#ALL DIRETORIES 
ALL_DIR = [ELEM for ELEM in os.listdir() if "." not in ELEM]
Powerful Pony

Получить имена файлов в папке Python

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
pi junky

Python LS Directory

import os
os.listdir()
Vivacious Vole

Ответы похожие на “Python LS Directory”

Вопросы похожие на “Python LS Directory”

Больше похожих ответов на “Python LS Directory” по Python

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

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