“diretório aberto python e arquivos de leitura” Respostas de código

Obtenha arquivos no diretório Python

import os
files_and_directories = os.listdir("path/to/directory")
Ill Impala

Obtenha arquivos no diretório 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

diretório aberto python e arquivos de leitura

#It doesn't have to be the current directory you can list them in any path you want:
path = '/some/path/to/file'
for filename in glob.glob(os.path.join(path, '*.txt')):
   with open(os.path.join(os.getcwd(), filename), 'r') as f: # open in readonly mode
      # do your stuff
BlueMoon

Arquivo aberto no diretório Python

path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
Filthy Falcon

diretório aberto python e arquivos de leitura

import glob
for filename in glob.glob('*.txt'):
   with open(os.path.join(os.getcwd(), filename), 'r') as f: # open in readonly mode
      # do your stuff
BlueMoon

diretório aberto python e arquivos de leitura

import os
for filename in os.listdir(os.getcwd()):
   with open(os.path.join(os.getcwd(), filename), 'r') as f: # open in readonly mode
      # do your stuff
BlueMoon

Respostas semelhantes a “diretório aberto python e arquivos de leitura”

Perguntas semelhantes a “diretório aberto python e arquivos de leitura”

Mais respostas relacionadas para “diretório aberto python e arquivos de leitura” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código