mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
5 lines
135 B
Python
5 lines
135 B
Python
from os import listdir
|
|
from os.path import isfile, join
|
|
onlyfiles = [f for f in listdir(".") if isfile(join(".", f))]
|
|
|
|
print(onlyfiles) |