“OS.Listdir in Python” Code-Antworten

OS.Listdir in 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

Listen Sie das Verzeichnis in Python auf

from os import listdir

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

Python OS.Listdir Attribute

from pathlib import Path

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

Ähnliche Antworten wie “OS.Listdir in Python”

Fragen ähnlich wie “OS.Listdir in Python”

Weitere verwandte Antworten zu “OS.Listdir in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen